Ignore:
Timestamp:
10/07/13 16:10:45 (11 years ago)
Author:
pharms
Message:
  • corrected HTML monitor to log only those GUI elements effectively used by the events including their parent hierarchy
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-htmlmonitor/src/main/java/de/ugoe/cs/autoquest/htmlmonitor/HtmlGUIElement.java

    r1075 r1315  
    113113    /** 
    114114     * <p> 
    115      * returns the id of the parent GUI element, if any 
     115     * returns the parent GUI element, if any 
    116116     * </p> 
    117117     * 
    118      * @return the id of the parent GUI element, or null, if this element does not have a parent 
     118     * @return the parent GUI element, or null, if this element does not have a parent 
    119119     */ 
    120     String getParentId() { 
    121         if (parent == null) { 
    122             return null; 
    123         } 
    124         else { 
    125             return parent.getId(); 
    126         } 
     120    HtmlGUIElement getParent() { 
     121        return parent; 
    127122    } 
    128123 
Note: See TracChangeset for help on using the changeset viewer.