Package org.jamesii.core.simulationrun.stoppolicy

Examples of org.jamesii.core.simulationrun.stoppolicy.DummySimRun


   *          the processor to which the dummy simulation run shall be attached
   * @return the simulation run associated with the processor
   */
  protected ISimulationRun setSimulationRun(P processor) {
    final P proc = processor;
    ISimulationRun simRun = new DummySimRun() {
      @Override
      public Double getTime() {
        return proc.getTime();
      }
    };
View Full Code Here

TOP

Related Classes of org.jamesii.core.simulationrun.stoppolicy.DummySimRun

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.