Ignore:
Timestamp:
12/04/12 11:50:39 (12 years ago)
Author:
fglaser
Message:
  • identifier in GUIElementTree changed to long. Corresponding changes were made in JFCSimplifiedLogParser
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-plugin-jfc/src/main/java/de/ugoe/cs/autoquest/plugin/jfc/JFCSimplifiedLogParser.java

    r1003 r1004  
    7979     * </p> 
    8080     */ 
    81     private Integer currentComponentHash; 
     81    private Long currentComponentHash; 
    8282     
    8383    /** 
     
    8787     * </p> 
    8888     */ 
    89     private Integer currentParentHash; 
     89    private Long currentParentHash; 
    9090     
    9191    /** 
     
    9494     * </p> 
    9595     */ 
    96     private Integer currentEventSource; 
     96    private Long currentEventSource; 
    9797     
    9898    /** 
     
    319319        } 
    320320        else if (qName.equals("component")) { 
    321                 currentComponentHash = (int) Long.parseLong(atts.getValue("hash"), 16); 
     321                currentComponentHash = Long.parseLong(atts.getValue("hash"), 16); 
    322322                currentGuiElementSpec = new JFCGUIElementSpec(); 
    323323                currentGuiElementSpec.setElementHash((int) currentComponentHash.longValue()); 
     
    341341                if (currentEventId != null){ 
    342342                        if ("source".equals(atts.getValue("name"))){ 
    343                                 currentEventSource = (int) Long.parseLong(atts.getValue("value"), 16); 
     343                                currentEventSource = Long.parseLong(atts.getValue("value"), 16); 
    344344                        } 
    345345                        if ("timestamp".equals(atts.getValue("name"))){ 
     
    361361                        } 
    362362                        else if ("parent".equals(atts.getValue("name"))) { 
    363                                 currentParentHash = (int) Long.parseLong(atts.getValue("value"), 16); 
     363                                currentParentHash = Long.parseLong(atts.getValue("value"), 16); 
    364364                        } 
    365365            } 
Note: See TracChangeset for help on using the changeset viewer.