Changeset 1259 for trunk/autoquest-core-events/src
- Timestamp:
- 07/25/13 14:42:19 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-core-events/src/main/java/de/ugoe/cs/autoquest/eventcore/guimodel/AbstractDefaultGUIElement.java
r1121 r1259 47 47 * </p> 48 48 */ 49 private finalIGUIElement parent;49 private IGUIElement parent; 50 50 51 51 /** … … 75 75 public AbstractDefaultGUIElement(IGUIElementSpec specification, IGUIElement parent) { 76 76 this.specification = specification; 77 this.parent = parent;78 77 this.usageObserved = false; 78 setParent(parent); 79 79 } 80 80 … … 218 218 /** 219 219 * <p> 220 * updates the parent node of this node if required due to model restructuring 221 * </p> 222 */ 223 void setParent(IGUIElement newParent) { 224 this.parent = newParent; 225 } 226 227 /** 228 * <p> 220 229 * Adds an {@link AbstractDefaultGUIElement} as equal to a list of 221 230 * {@link AbstractDefaultGUIElement}s if and only if it is not already contained.
Note: See TracChangeset
for help on using the changeset viewer.