package nl.tudelft.simulation.event; /** * The EventProducerParent is an event producer used in JUNIT tests. *

* (c) copyright 2002-2005-2004 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 $Revision: 1.2 $ $Date: 2010/08/10 11:38:11 $ * @since 1.5 */ public class EventProducerParent extends EventProducerChild { /** The default serial version UID for serializable classes. */ private static final long serialVersionUID = 1L; /** event_c is merely a test event. */ @SuppressWarnings("hiding") public static final EventType EVENT_C = new EventType("EVENT_C"); /** event_d is merely a test event. */ protected static EventType eventD = new EventType("EVENT_D"); /** event_e is merely a test event. */ public static final EventType EVENT_E = new EventType("EVENT_E"); /** * constructs a new EventProducerChild. */ public EventProducerParent() { super(); } /** {@inheritDoc} */ @Override public EventInterface fireEvent(final EventInterface event) { return super.fireEvent(event); } }