Package com.edgytech.swingfast

Examples of com.edgytech.swingfast.Directory


    static Directory _xmlDir;
    static Directory _confDir;

    static Directory getXmlDir() {
        if (_xmlDir == null) {
            _xmlDir = new Directory("xml", "xml", true, File.values(), Common.Ext.xml);
        }
        return _xmlDir;
    }
View Full Code Here


        return _xmlDir;
    }

    static Directory getConfDir() {
        if (_confDir == null) {
            _confDir = new Directory("conf", "conf", false, File.values(), Common.Ext.xml);
        }
        return _confDir;
    }
View Full Code Here

TOP

Related Classes of com.edgytech.swingfast.Directory

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.