1
2
3
4
5
6
7 package nl.tudelft.simulation.event;
8
9 import java.io.Serializable;
10
11 /***
12 * The EventProducerChild is an event producer used in JUNIT tests.
13 * <p>
14 * (c) copyright 2002-2005-2004 <a href="http://www.simulation.tudelft.nl">Delft
15 * University of Technology </a>, the Netherlands. <br>
16 * See for project information <a
17 * href="http://www.simulation.tudelft.nl">www.simulation.tudelft.nl </a> <br>
18 * License of use: <a href="http://www.gnu.org/copyleft/lesser.html">Lesser
19 * General Public License (LGPL) </a>, no warranty.
20 *
21 * @author <a href="http://www.peter-jacobs.com">Peter Jacobs </a>
22 * @version $Revision: 1.6 $ $Date: 2005/07/04 12:23:03 $
23 * @since 1.5
24 */
25 public class EventProducerChild extends EventProducer implements Serializable
26 {
27 /*** EVENT_A is merely a test event */
28 public static final EventType EVENT_A = new EventType("EVENT_A");
29
30 /*** EVENT_B is merely a test event */
31 public static final EventType EVENT_B = new EventType("EVENT_B");
32
33 /*** EVENT_C is merely a test event */
34 public static final EventType EVENT_C = new EventType("EVENT_C");
35
36 /***
37 * constructs a new EventProducerChild
38 */
39 protected EventProducerChild()
40 {
41 super();
42 }
43 }