Changeset 802


Ignore:
Timestamp:
09/10/12 16:31:40 (12 years ago)
Author:
pharms
Message:
  • added support to test GUI hierarchies
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/quest-test-utils/src/main/java/de/ugoe/cs/quest/test/DummyGUIElement.java

    r703 r802  
    2424     */ 
    2525    public DummyGUIElement(String name) { 
    26         super(null, null); 
     26        this(name, null); 
     27    } 
     28 
     29    /** 
     30     * 
     31     */ 
     32    public DummyGUIElement(String name, IGUIElement parent) { 
     33        super(null, parent); 
    2734        this.name = name; 
    2835    } 
Note: See TracChangeset for help on using the changeset viewer.