1   /*
2    * @(#) EventProducerChild.java Sep 1, 2003
3    * 
4    * Copyright (c) 2003 Delft University of Technology Jaffalaan 5, 2628 BX Delft,
5    * the Netherlands All rights reserved.
6    * 
7    * This software is proprietary information of Delft University of Technology
8    * The code is published under the General Public License
9    */
10  package nl.tudelft.simulation.event;
11  
12  import java.io.Serializable;
13  
14  /***
15   * The EventProducerChild is an event producer used in JUNIT tests.
16   * <p>
17   * (c) copyright 2003-2004 <a href="http://www.simulation.tudelft.nl">Delft
18   * University of Technology </a>, the Netherlands. <br>
19   * See for project information <a
20   * href="http://www.simulation.tudelft.nl">www.simulation.tudelft.nl </a> <br>
21   * License of use: <a href="http://www.gnu.org/copyleft/gpl.html">General Public
22   * License (GPL) </a>, no warranty <br>
23   * 
24   * @author <a href="http://www.simulation.tudelft.nl/people/jacobs.html">Peter
25   *         Jacobs </a>
26   * @version 1.4, 2004-03-18
27   * @since 1.2
28   */
29  public class EventProducerChild extends EventProducer implements Serializable
30  {
31  	/*** EVENT_A is merely a test event */
32  	public static final EventType EVENT_A = new EventType("EVENT_A");
33  
34  	/*** EVENT_B is merely a test event */
35  	public static final EventType EVENT_B = new EventType("EVENT_B");
36  
37  	/*** EVENT_C is merely a test event */
38  	public static final EventType EVENT_C = new EventType("EVENT_C");
39  
40  	/***
41  	 * constructs a new EventProducerChild
42  	 */
43  	protected EventProducerChild()
44  	{
45  		super();
46  	}
47  }