Changeset 1004 for trunk/autoquest-plugin-jfc/src/main
- Timestamp:
- 12/04/12 11:50:39 (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
r1003 r1004 79 79 * </p> 80 80 */ 81 private IntegercurrentComponentHash;81 private Long currentComponentHash; 82 82 83 83 /** … … 87 87 * </p> 88 88 */ 89 private IntegercurrentParentHash;89 private Long currentParentHash; 90 90 91 91 /** … … 94 94 * </p> 95 95 */ 96 private IntegercurrentEventSource;96 private Long currentEventSource; 97 97 98 98 /** … … 319 319 } 320 320 else if (qName.equals("component")) { 321 currentComponentHash = (int)Long.parseLong(atts.getValue("hash"), 16);321 currentComponentHash = Long.parseLong(atts.getValue("hash"), 16); 322 322 currentGuiElementSpec = new JFCGUIElementSpec(); 323 323 currentGuiElementSpec.setElementHash((int) currentComponentHash.longValue()); … … 341 341 if (currentEventId != null){ 342 342 if ("source".equals(atts.getValue("name"))){ 343 currentEventSource = (int)Long.parseLong(atts.getValue("value"), 16);343 currentEventSource = Long.parseLong(atts.getValue("value"), 16); 344 344 } 345 345 if ("timestamp".equals(atts.getValue("name"))){ … … 361 361 } 362 362 else if ("parent".equals(atts.getValue("name"))) { 363 currentParentHash = (int)Long.parseLong(atts.getValue("value"), 16);363 currentParentHash = Long.parseLong(atts.getValue("value"), 16); 364 364 } 365 365 }
Note: See TracChangeset
for help on using the changeset viewer.