Package yalp.classloading

Examples of yalp.classloading.ApplicationClasses


        Yalp.id = System.getProperty("yalp.id");
        Yalp.applicationPath = new File(System.getProperty("application.path"));
        Yalp.guessFrameworkPath();
        Yalp.readConfiguration();
        Yalp.javaPath = new ArrayList<VirtualFile>();
        Yalp.classes = new ApplicationClasses();
        Yalp.classloader = new ApplicationClassloader();

        Yalp.templatesPath = new ArrayList<VirtualFile>();
        Yalp.modulesRoutes = new HashMap<String, VirtualFile>();
        Yalp.loadModules();
View Full Code Here


        guessFrameworkPath();

        // Read the configuration file
        readConfiguration();

        Yalp.classes = new ApplicationClasses();

        // Configure logs
        Logger.init();
        String logLevel = configuration.getProperty("application.log", "INFO");
View Full Code Here

    @SuppressWarnings({"deprecation"})
    public void build() {

        Yalp.configuration = configuration;
        Yalp.classes = new ApplicationClasses();
        Yalp.javaPath = new ArrayList<VirtualFile>();
        Yalp.applicationPath = new File(".");
        Yalp.classloader = new ApplicationClassloader();
        Yalp.plugins = Collections.unmodifiableList(new ArrayList<YalpPlugin>());
View Full Code Here

TOP

Related Classes of yalp.classloading.ApplicationClasses

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.