diff options
Diffstat (limited to 'java/src/IceGrid/TreeNode/CommonBase.java')
-rwxr-xr-x | java/src/IceGrid/TreeNode/CommonBase.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/java/src/IceGrid/TreeNode/CommonBase.java b/java/src/IceGrid/TreeNode/CommonBase.java index b52afa78f2d..7a910a3deaf 100755 --- a/java/src/IceGrid/TreeNode/CommonBase.java +++ b/java/src/IceGrid/TreeNode/CommonBase.java @@ -28,6 +28,8 @@ public interface CommonBase extends TreeCellRenderer int getIndex(Object child);
boolean isLeaf();
+ CommonBase findChild(String id);
+
//
// Unique within the scope of each parent
//
@@ -41,6 +43,12 @@ public interface CommonBase extends TreeCellRenderer //
void unregister();
+
+ //
+ // Destroys this node, no-op when destruction not allowed
+ //
+ // void remove();
+
//
// Set this node as a parent, and recursively update
// the path of all children.
|