◆ loadContainers()
void org.turro.zul.portal.PortalWindows.loadContainers |
( |
| ) |
|
Definition at line 36 of file PortalWindows.java.
37 File root =
new File(ElephantContext.getRealPath(
"/WEB-INF/portal"));
39 for(File f : root.listFiles(
new FileFilter() {
41 public boolean accept(File pathname) {
42 return pathname.isFile() && !pathname.isHidden() &&
43 pathname.getName().endsWith(
".portal");
46 PortalContainer pc =
new PortalContainer();
47 pc.setFiles(getUserContainer(f), f);
48 put(FileUtil.getBaseName(f), pc);
The documentation for this class was generated from the following file: