Package net.sf.rej.files

Examples of net.sf.rej.files.SingleFile


        }
    }

    public FileSet getFileSet(File f) throws IOException {
        if (f.getName().endsWith(".class")) {
            return new SingleFile(f);
        } else if (f.isDirectory()) {
            return new Folder(f);
        } else if (f.getName().endsWith(".zip") || f.getName().endsWith(".jar")) {
            return new Archive(f);
        } else {
View Full Code Here

TOP

Related Classes of net.sf.rej.files.SingleFile

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.