1
2
3
4
5
6
7
8
9
10
11
12
13 package org.gscg;
14
15 import javax.vecmath.Point3d;
16
17 import nl.tudelft.simulation.actor.Actor;
18 import nl.tudelft.simulation.dsol.simulators.DEVSSimulatorInterface;
19
20 /***
21 * <p>
22 * Copyright (c) 2003-2005 Delft University of Technology, Jaffalaan 5, 2628 BX
23 * Delft, the Netherlands. All rights reserved.
24 *
25 * See for project information <a href="http://www.simulation.tudelft.nl/">
26 * www.simulation.tudelft.nl </a>.
27 *
28 * The source code and binary code of this software is proprietary information
29 * of Delft University of Technology.
30 *
31 * @author <a
32 * href="http://www.tbm.tudelft.nl/webstaf/stijnh/index.htm">Stijn-Pieter
33 * van Houten </a>
34 * @version $Revision: 1.1 $ $Date: 2005/06/16 12:34:03 $
35 * @since 1.0.11
36 */
37 public class ActorImplementation extends Actor
38 {
39 /*** the serial version uid */
40 private static final long serialVersionUID = 11L;
41
42 /***
43 * constructs a new ActorImplementation
44 *
45 * @param name the name
46 * @param simulator the simulator
47 * @param position the position
48 */
49 public ActorImplementation(final String name,
50 final DEVSSimulatorInterface simulator, final Point3d position)
51 {
52 super(name, simulator, position);
53 }
54 }