Package org.jdesktop.wonderland.modules

Examples of org.jdesktop.wonderland.modules.ModulePart


         * a new part.
         */
        for (File file : files) {
            if (file.isDirectory() == true && file.isHidden() == false) {
                String name = file.getName();
                ModulePart part = new ModulePart(name, file);
                map.put(name, part);
            }
        }
        return map;
    }
View Full Code Here


                if (partType.equals("META-INF") == true) {
                    continue;
                }

                /* Just use the jar file */
                ModulePart part = new ModulePart(partType, this.getFile());
                map.put(partType, part);
            }
        }
        return map;
    }
View Full Code Here

TOP

Related Classes of org.jdesktop.wonderland.modules.ModulePart

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.