Package de.hpi.eworld.visualizer.simulation.eworld

Examples of de.hpi.eworld.visualizer.simulation.eworld.SimulationControl


      configureAndExport();
      return;
    }
    // if simulation is setup but no simcontrol exists, start simulation
    if (!simulationRunning && this.simControl == null) {
      this.simControl = new SimulationControl(simSettings);
      simControl.addObserver(this);
      simControl.timeStepChanged(Integer.parseInt(simTimeStepSpinBox.getValue().toString()));
      this.simControl.startSimulation();
      updateIcons("pause.png");
      stepButton.setEnabled(false);
View Full Code Here

TOP

Related Classes of de.hpi.eworld.visualizer.simulation.eworld.SimulationControl

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.