*
* @param skinpath an array of directory paths or HopObjects to search for skins
* @return a map containing the skin resources
*/
public Map getSkinfilesInPath(Object[] skinpath) {
Map skinz = new SystemMap();
for (Iterator it = app.getPrototypes().iterator(); it.hasNext();) {
Prototype p = (Prototype) it.next();
Object skinmap = p.getScriptableSkinMap(skinpath);
skinz.put(p.getName(), skinmap);
skinz.put(p.getLowerCaseName(), skinmap);
}
return skinz;
}