Changeset 1274 for trunk/autoquest-core-events/src/main/java/de/ugoe
- Timestamp:
- 07/26/13 07:59:47 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-core-events/src/main/java/de/ugoe/cs/autoquest/eventcore/guimodel/GUIElementGroup.java
r1260 r1274 31 31 public class GUIElementGroup extends AbstractDefaultGUIElement { 32 32 33 /** */ 33 /** 34 * <p> 35 * default serial version UID 36 * </p> 37 */ 34 38 private static final long serialVersionUID = 1L; 35 39 … … 85 89 /** 86 90 * <p> 87 * TODO: comment91 * returns the list of GUI elements belonging to this group. 88 92 * </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 97 95 * 98 96 */ 99 97 public List<IGUIElement> getGroupedElements() { 100 98 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); 101 110 } 102 111 … … 111 120 private static class GroupSpecification implements IGUIElementSpec { 112 121 113 /** */ 122 /** 123 * <p> 124 * default serial version UID 125 * </p> 126 */ 114 127 private static final long serialVersionUID = 1L; 128 115 129 /** 130 * <p> 116 131 * the name of the GUI element group represented by this specification 132 * </p> 117 133 */ 118 134 private String name;
Note: See TracChangeset
for help on using the changeset viewer.