Package eas.plugins.standard.storeAndLoad

Examples of eas.plugins.standard.storeAndLoad.AllroundSimstateStorerPlugin


                + "java -Xmx900M -cp \"./*;./" + JAR_FILE_NAME + "\" eas.startSetup.Starter "
                + "startimmediately true "
                + "masterScheduler simStateLoader "
                + "plugin null "
                + SimStateLoaderMaster.ADDITIONAL_PLUGINS_TO_LOAD_PARNAME + " " + new AllroundVideoPlugin().id() + " "
                + SimStateLoaderMaster.PLUGINS_TO_REMOVE_PARNAME + " " + new AllroundSimstateStorerPlugin().id() + " "
                + "filePath ../" + this.data.getStorageFile().getName();
       
        StaticMethods.speichereTextDatei(
                this.data.getStorageFile().getParent(),
                this.data.getStorageFile().getName().replace(".eas", "") + ".bat",
                parameters,
                GlobalVariables.getPrematureParameters());
       
        // Linux.
        parameters = "#!/bin/bash \n\n"
                + "function startMe {\n\n"
                + "java -Xmx900M -cp \"./*:./" + JAR_FILE_NAME + "\" eas.startSetup.Starter "
                + "masterScheduler simStateLoader "
                + "plugin null "
                + SimStateLoaderMaster.ADDITIONAL_PLUGINS_TO_LOAD_PARNAME + " " + new AllroundVideoPlugin().id() + " "
                + SimStateLoaderMaster.PLUGINS_TO_REMOVE_PARNAME + " " + new AllroundSimstateStorerPlugin().id() + " "
                + "filePath ../" + this.data.getStorageFile().getName()
                + "\n\n}\n\nstartMe";
       
        StaticMethods.speichereTextDatei(
                this.data.getStorageFile().getParent(),
View Full Code Here

TOP

Related Classes of eas.plugins.standard.storeAndLoad.AllroundSimstateStorerPlugin

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.