Ignore:
Timestamp:
11/15/12 11:33:45 (12 years ago)
Author:
pharms
Message:
  • rename of GUI element class hierarchy to type hierarchy, as the other method is also called "getType"
  • corrected some implementations of "getTypeHierarchy" which were not implemented so far.
File:
1 edited

Legend:

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

    r984 r990  
    136136     * </p>  
    137137     */ 
    138     private List<String> currentClassHierarchy; 
     138    private List<String> currentTypeHierarchy; 
    139139 
    140140    /** 
     
    356356        } 
    357357        else if (qName.equals("ancestor")){ 
    358                         currentClassHierarchy.add(atts.getValue("name")); 
     358                        currentTypeHierarchy.add(atts.getValue("name")); 
    359359        } 
    360360        else if (qName.equals("ancestors")){ 
    361                         currentClassHierarchy = new LinkedList<String>(); 
     361                        currentTypeHierarchy = new LinkedList<String>(); 
    362362        } 
    363363    } 
     
    378378        } 
    379379        else if (qName.equals("ancestors")){ 
    380                 currentGuiElementSpec.setClassHierarchy(currentClassHierarchy); 
     380                currentGuiElementSpec.setTypeHierarchy(currentTypeHierarchy); 
    381381        } 
    382382        else if (qName.equals("component") && currentComponentHash != null) { 
     
    386386                currentComponentHash = null; 
    387387                currentParentHash = null; 
    388                 currentClassHierarchy = null; 
     388                currentTypeHierarchy = null; 
    389389        } 
    390390        else if (currentEventId != null) { 
Note: See TracChangeset for help on using the changeset viewer.