Package eas.plugins.standard.eaPlugin.xmlRecording

Examples of eas.plugins.standard.eaPlugin.xmlRecording.XMLAufnahmePlugin


        for (int i = 0; i < schleimanz; i++) {
            RobEA r = new RobEA(i, umg, this.pars, this.rand);
            umg.hinzuRobotRand(r);
        }

        XMLAufnahmePlugin aufnahmePlug = (XMLAufnahmePlugin) umg
                .getPluginObject(new XMLAufnahmePlugin().id());

        if (aufnahmePlug != null) {
            aufnahmePlug.setAufnahme(
                    new XMLAufnSpeichern(this.pars, schleimanz, umg),
                    this.pars);
        }

        StaticMethods.log(StaticMethods.LOG_INFO,
View Full Code Here


    private long intervall;
   
    @Override
    public List<String> getRequiredPlugins() {
        LinkedList<String> list = new LinkedList<String>();
        list.add(new XMLAufnahmePlugin().id());
        return list;
    }
View Full Code Here

    public void runAfterSimulation(
            final EnvironmentEA env,
            final ParCollection params) {
        EnvironmentEA umg = env;

        if (umg.existsPlugin(new XMLAufnahmePlugin().id())) {
            umg.setSimEndeFlag();
        }
       
            Iterator<VisMantel> it = this.graphen.iterator();
            while (it.hasNext()) {
View Full Code Here

TOP

Related Classes of eas.plugins.standard.eaPlugin.xmlRecording.XMLAufnahmePlugin

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.