source: trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/windows/WindowsEvent.java @ 171

Last change on this file since 171 was 171, checked in by sherbold, 13 years ago
  • code documentation and formatting
  • Property svn:mime-type set to text/plain
File size: 733 bytes
Line 
1package de.ugoe.cs.eventbench.windows;
2
3import de.ugoe.cs.eventbench.data.ReplayableEvent;
4import de.ugoe.cs.eventbench.windows.data.WindowsMessage;
5
6/**
7 * <p>
8 * Convenience class for working with Windows MFC events.
9 * </p>
10 *
11 * @author Steffen Herbold
12 * @version 1.0
13 */
14public class WindowsEvent extends ReplayableEvent<WindowsMessage> {
15
16        /**
17         * <p>
18         * Id for object serialization.
19         * </p>
20         */
21        private static final long serialVersionUID = 1L;
22
23        /**
24         * <p>
25         * Constructor. Creates a new WindowEvent.
26         * </p>
27         *
28         * @see de.ugoe.cs.eventbench.data.Event#Event(String)
29         * @param type
30         *            type of the event.
31         */
32        public WindowsEvent(String type) {
33                super(type);
34        }
35
36}
Note: See TracBrowser for help on using the repository browser.