Ignore:
Timestamp:
07/26/13 07:59:47 (11 years ago)
Author:
pharms
Message:
  • removed TODOs
File:
1 edited

Legend:

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

    r1260 r1274  
    3131public class GUIElementGroup extends AbstractDefaultGUIElement { 
    3232 
    33     /**  */ 
     33    /** 
     34     * <p> 
     35     * default serial version UID 
     36     * </p> 
     37     */ 
    3438    private static final long serialVersionUID = 1L; 
    3539     
     
    8589    /** 
    8690     * <p> 
    87      * TODO: comment 
     91     * returns the list of GUI elements belonging to this group. 
    8892     * </p> 
    89      * 
    90      * @param guiElement 
    91      */ 
    92     public void addToGroup(IGUIElement guiElement) { 
    93         this.groupedGUIElements.add(guiElement); 
    94     } 
    95      
    96     /** 
     93     *  
     94     * @return the GUI elements belonging to this group 
    9795     *  
    9896     */ 
    9997    public List<IGUIElement> getGroupedElements() { 
    10098        return Collections.unmodifiableList(groupedGUIElements); 
     99    } 
     100     
     101    /** 
     102     * <p> 
     103     * allows adding a new GUI element to the group 
     104     * </p> 
     105     * 
     106     * @param guiElement the new member of the group 
     107     */ 
     108    void addToGroup(IGUIElement guiElement) { 
     109        this.groupedGUIElements.add(guiElement); 
    101110    } 
    102111     
     
    111120    private static class GroupSpecification implements IGUIElementSpec { 
    112121         
    113         /**  */ 
     122        /** 
     123         * <p> 
     124         * default serial version UID 
     125         * </p> 
     126         */ 
    114127        private static final long serialVersionUID = 1L; 
     128         
    115129        /** 
     130         * <p> 
    116131         * the name of the GUI element group represented by this specification 
     132         * </p> 
    117133         */ 
    118134        private String name; 
Note: See TracChangeset for help on using the changeset viewer.