1
2
3
4
5
6
7 package nl.tudelft.simulation.xml;
8
9 import nl.tudelft.simulation.dsol.ModelInterface;
10 import nl.tudelft.simulation.dsol.simulators.SimulatorInterface;
11
12 /***
13 * A DummyTestModel
14 * <p>
15 * (c) copyright 2002-2005 <a href="http://www.simulation.tudelft.nl">Delft
16 * University of Technology </a>, the Netherlands. <br>
17 * See for project information <a
18 * href="http://www.simulation.tudelft.nl">www.simulation.tudelft.nl </a> <br>
19 * License of use: <a href="http://www.gnu.org/copyleft/lesser.html">Lesser
20 * General Public License (LGPL) </a>, no warranty.
21 *
22 * @author <a href="http://www.peter-jacobs.com/index.htm">Peter Jacobs </a>
23 * @version 1.2 Sep 28, 2004
24 * @since 1.5
25 */
26 public class DummyModel implements ModelInterface
27 {
28 /***
29 * constructs a new DummyModel
30 */
31 public DummyModel()
32 {
33 super();
34 }
35
36 /***
37 * @see nl.tudelft.simulation.dsol.ModelInterface#constructModel(nl.tudelft.simulation.dsol.simulators.SimulatorInterface)
38 */
39 public void constructModel(final SimulatorInterface simulator)
40 {
41
42 }
43 }