package de.ugoe.cs.eventbench.windows.data; import de.ugoe.cs.eventbench.data.ReplayableEvent; /** *

* Convenience class for working with Windows MFC events. *

* * @author Steffen Herbold * @version 1.0 */ public class WindowsEvent extends ReplayableEvent { /** *

* Id for object serialization. *

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

* Constructor. Creates a new WindowEvent. *

* * @see de.ugoe.cs.eventbench.data.Event#Event(String) * @param type * type of the event. */ public WindowsEvent(String type) { super(type); } }