String name = (String)e.nextElement();
ResourceCell cell =
new ResourceCell(name, (String)resources.get(name));
cells.addElement(cell);
}
DraggableList list = getResourceList(cells);
JScrollPane scroll = new JScrollPane(list);
tabbedPane.addTab("Resources", null, scroll, "Resources available");
//frames
resources = pm.getFrames();
e = (Sorter.sortStringEnumeration(resources.keys())).elements();