- Timestamp:
- 12/20/11 10:16:36 (13 years ago)
- Location:
- trunk/EventBenchCore/src/de/ugoe/cs/eventbench/data
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/EventBenchCore/src/de/ugoe/cs/eventbench/data/Event.java
r86 r335 42 42 * </p> 43 43 */ 44 pr ivateString type;44 protected String type; 45 45 46 46 /** 47 47 * </p> Target of the event. 48 48 */ 49 pr ivateString target = null;49 protected String target = null; 50 50 51 51 /** … … 54 54 * </p> 55 55 */ 56 pr ivateString targetShort = null;56 protected String targetShort = null; 57 57 58 58 /** 59 59 * Further information about the event that shall be included in its Id. 60 60 */ 61 pr ivateString idInfo = "";61 protected String idInfo = ""; 62 62 63 63 /** -
trunk/EventBenchCore/src/de/ugoe/cs/eventbench/data/ReplayableEvent.java
r108 r335 35 35 * </p> 36 36 */ 37 pr ivateList<T> replayEvents = new LinkedList<T>();;37 protected List<T> replayEvents = new LinkedList<T>();; 38 38 39 39 /** … … 44 44 * </p> 45 45 */ 46 pr ivateboolean replayValid = true;46 protected boolean replayValid = true; 47 47 48 48 /** … … 51 51 * </p> 52 52 */ 53 pr ivateIReplayDecorator decorator = null;53 protected IReplayDecorator decorator = null; 54 54 55 55 /**
Note: See TracChangeset
for help on using the changeset viewer.