package de.ugoe.cs.eventbench.assertions; import de.ugoe.cs.eventbench.data.Event; import de.ugoe.cs.eventbench.data.IReplayable; import de.ugoe.cs.eventbench.data.ReplayableEvent; /** *

* Subclass of {@link ReplayableEvent} for assertions *

* * @author Jeffrey Hall * @version 1.0 * * @param * Allows only types that extend {@link IReplayable} and is used to * define the type of the assertion. * */ public class AssertEvent extends ReplayableEvent { /** *

* Id for object serialization. *

*/ private static final long serialVersionUID = 1L; /** *

* Constructor. Creates a new event with the given type. *

* * @param type * type of the event * @see Event#Event(String) */ public AssertEvent(String type) { super(type); } }