Changeset 87 for trunk/EventBenchConsole
- Timestamp:
- 06/23/11 14:03:08 (13 years ago)
- Location:
- trunk/EventBenchConsole/src/de/ugoe/cs/eventbench
- Files:
-
- 2 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/web/data/WebEvent.java
r53 r87 7 7 public class WebEvent extends ReplayableEvent<WebRequest> { 8 8 9 /** 10 * Id for object serialization. 11 */ 12 private static final long serialVersionUID = 1L; 13 9 14 private final long timestamp; 10 15 private String uri; -
trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/web/data/WebRequest.java
r53 r87 7 7 8 8 public class WebRequest implements IReplayable { 9 10 /** 11 * Id for object serialization. 12 */ 13 private static final long serialVersionUID = 1L; 9 14 10 15 List<String> postVars; -
trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/windows/MFCReplayDecorator.java
r58 r87 6 6 public class MFCReplayDecorator implements IReplayDecorator { 7 7 8 private static MFCReplayDecorator theInstance; 8 /** 9 * Id for object serialization. 10 */ 11 private static final long serialVersionUID = 1L; 12 13 transient private static MFCReplayDecorator theInstance; 9 14 10 15 private MFCReplayDecorator() {}; -
trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/windows/WindowsEvent.java
r77 r87 8 8 public class WindowsEvent extends ReplayableEvent<WindowsMessage> { 9 9 10 /** 11 * Id for object serialization. 12 */ 13 private static final long serialVersionUID = 1L; 14 10 15 public WindowsEvent(String type) { 11 16 super(type); -
trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/windows/data/WindowsMessage.java
r52 r87 9 9 10 10 public class WindowsMessage implements IReplayable { 11 /** 12 * Id for object serialization. 13 */ 14 private static final long serialVersionUID = 1L; 15 11 16 final int type; 12 17 private String windowClass = "";
Note: See TracChangeset
for help on using the changeset viewer.