package nl.tudelft.simulation.event; import java.io.Serializable; /** * The EventProducerChild is an event producer used in JUNIT tests. *
* Copyright (c) 2004-2018 Delft University of Technology, Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights * reserved. See for project information * https://simulation.tudelft.nl. The DSOL project is distributed under a three-clause BSD-style license, which can * be found at * https://simulation.tudelft.nl/dsol/3.0/license.html. *
* @author Peter Jacobs * @since 1.5 */ public class EventProducerChild extends EventProducer implements Serializable { /** The default serial version UID for serializable classes. */ private static final long serialVersionUID = 1L; /** EVENT_A is merely a test event. */ public static final EventType EVENT_A = new EventType("EVENT_A"); /** EVENT_B is merely a test event. */ public static final EventType EVENT_B = new EventType("EVENT_B"); /** EVENT_C is merely a test event. */ public static final EventType EVENT_C = new EventType("EVENT_C"); /** * constructs a new EventProducerChild. */ protected EventProducerChild() { super(); } }