Changeset 1001 for trunk/autoquest-plugin-jfc/src/main
- Timestamp:
- 11/21/12 10:09:02 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-plugin-jfc/src/main/java/de/ugoe/cs/autoquest/plugin/jfc/JFCSimplifiedLogParser.java
r990 r1001 90 90 /** 91 91 * <p> 92 * Internal handle to the parametersof the event that is currently being parsed.92 * Internal handle to the source of the event that is currently being parsed. 93 93 * </p> 94 94 */ 95 95 private Integer currentEventSource; 96 97 /** 98 * <p> 99 * Internal handle to the timestamp of the event that is currently being parsed. 100 */ 101 private Long currentEventTimestamp = -1l; 96 102 97 103 /** … … 335 341 if ("source".equals(atts.getValue("name"))){ 336 342 currentEventSource = (int) Long.parseLong(atts.getValue("value"), 16); 343 } 344 if ("timestamp".equals(atts.getValue("name"))){ 345 currentEventTimestamp = Long.parseLong(atts.getValue("value")); 337 346 } 338 347 currentEventParameters.put(atts.getValue("name"), atts.getValue("value")); … … 397 406 (instantiateInteraction(currentEventId, currentEventParameters), 398 407 (currentGUIElement == null ? lastGUIElement : currentGUIElement)); 408 event.setTimestamp(currentEventTimestamp); 399 409 400 410 currentSequence.add(event); … … 402 412 currentEventParameters = null; 403 413 currentEventId = null; 414 currentEventTimestamp = -1l; 404 415 405 416 if (currentGUIElement != null) {
Note: See TracChangeset
for help on using the changeset viewer.