Package org.openbp.common.rc

Examples of org.openbp.common.rc.ResourceItem


    ResourceCollection res = skin.getResource();

    for (Iterator it = res.getKeys(); it.hasNext();)
    {
      String key = (String) it.next();
      ResourceItem ri = res.getResourceItem(key);

      Object object = ri.getObject();
      if (object instanceof Icon)
      {
        ItemIconMgr.getInstance().registerIcon(skinName, key, (Icon) object);
      }
    }
View Full Code Here

TOP

Related Classes of org.openbp.common.rc.ResourceItem

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.