Ignore:
Timestamp:
03/04/14 12:19:00 (10 years ago)
Author:
pharms
Message:
  • added support to retrieve the GUI model to which a GUI element belongs from the GUI element itself
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-core-events/src/main/java/de/ugoe/cs/autoquest/eventcore/guimodel/GUIElementGroup.java

    r1274 r1433  
    5050     * @param groupName the name of the GUI element group 
    5151     * @param parent    the optional parent GUI element of the group 
     52     * @param guiModel  the GUI model to which the group will belong 
    5253     */ 
    53     public GUIElementGroup(String groupName, IGUIElement parent) { 
     54    public GUIElementGroup(String groupName, IGUIElement parent, GUIModel guiModel) { 
    5455        super(new GroupSpecification(groupName), parent); 
     56        super.setGUIModel(guiModel); 
    5557    } 
    5658 
Note: See TracChangeset for help on using the changeset viewer.