package nl.tudelft.simulation.xml; import java.rmi.RemoteException; import nl.tudelft.simulation.dsol.DSOLModel; import nl.tudelft.simulation.dsol.simulators.SimulatorInterface; /** * A DummyTestModel *

* (c) copyright 2002-2005 Delft University of Technology , the * Netherlands.
* See for project information www.simulation.tudelft.nl
* License of use: Lesser General Public License (LGPL) , no * warranty. * @author Peter Jacobs * @version 1.2 Sep 28, 2004 * @since 1.5 */ public class DummyModel implements DSOLModel { /** * constructs a new DummyModel. */ public DummyModel() { super(); } /** {@inheritDoc} */ @Override public void constructModel(final SimulatorInterface simulator) { // We have constructed a model. } public SimulatorInterface getSimulator() throws RemoteException { return null; } }