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-core-events/src/main/java/de/ugoe/cs/autoquest/eventcore/guimodel/GUIElementFactory.java

    r984 r990  
    8484        Properties mappings = getMappingsFromConfiguration(); 
    8585        IGUIElement guiElement = null; 
    86         String[] classHierarchy = specification.getClassHierarchy(); 
     86        String[] typeHierarchy = specification.getTypeHierarchy(); 
    8787        int i = 0; 
    8888        String className = null; 
    89         while (className == null && i < classHierarchy.length){ 
    90                 className = mappings.getProperty(classHierarchy[i]); 
     89        while (className == null && i < typeHierarchy.length){ 
     90                className = mappings.getProperty(typeHierarchy[i]); 
    9191                i++; 
    9292        } 
Note: See TracChangeset for help on using the changeset viewer.