Package org.jdesktop.wonderland.modules.file

Examples of org.jdesktop.wonderland.modules.file.FileModule


     */
    public static final Module open(File file) throws FileNotFoundException, IOException, JAXBException {       
       
        /* If the URL points to a disk directory */
        if (file.exists() == true && file.isDirectory() == true) {
            return new FileModule(file);
        }
        else if (file.exists() == true && file.getName().endsWith(".jar") == true) {
            return new ArchiveModule(file);
        }
        else {
View Full Code Here

TOP

Related Classes of org.jdesktop.wonderland.modules.file.FileModule

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.