package nl.tudelft.simulation.dsol.process; import nl.tudelft.simulation.dsol.interpreter.process.InterpretableProcess; /** * The specifies *

* (c) copyright 2004 Delft University of Technology , the * Netherlands.
* See for project information www.simulation.tudelft.nl/dsol
* License of use: General Public License (GPL) , no warranty
* @author Peter Jacobs * @version $Revision: 1.1 $ $Date: 2007/01/07 05:00:13 $ * @since 1.5 */ public class Exec { /** * constructs a new Exec. */ public Exec() { super(); } /** * @param process */ private static void elaborate(InterpretableProcess process) { process.resumeProcess(); } /** * @param args */ public static void main(String[] args) { // elaborate(new Cow()); elaborate(new Dog()); } }