View Javadoc
1   package org.opentrafficsim.core.dsol;
2   
3   import nl.tudelft.simulation.dsol.simulators.DEVSAnimator;
4   
5   import org.opentrafficsim.core.unit.TimeUnit;
6   import org.opentrafficsim.core.value.vdouble.scalar.DoubleScalar;
7   
8   /**
9    * <p>
10   * Copyright (c) 2013-2014 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
11   * BSD-style license. See <a href="http://opentrafficsim.org/node/13">OpenTrafficSim License</a>.
12   * <p>
13   * @version Aug 15, 2014 <br>
14   * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
15   */
16  public class OTSDEVSAnimator extends DEVSAnimator<DoubleScalar.Abs<TimeUnit>, DoubleScalar.Rel<TimeUnit>, OTSSimTimeDouble>
17      implements OTSDEVSSimulatorInterface, OTSAnimatorInterface
18  {
19      /** */
20      private static final long serialVersionUID = 20140909L;
21  
22      /**
23       * Create a new OTSDEVSAnimator..
24       */
25      public OTSDEVSAnimator()
26      {
27          super();
28      }
29  }