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