diff options
Diffstat (limited to 'java/src/IceGrid/TreeNode/CommonBase.java')
-rwxr-xr-x | java/src/IceGrid/TreeNode/CommonBase.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/java/src/IceGrid/TreeNode/CommonBase.java b/java/src/IceGrid/TreeNode/CommonBase.java index 4329a00520f..3a7eb89a642 100755 --- a/java/src/IceGrid/TreeNode/CommonBase.java +++ b/java/src/IceGrid/TreeNode/CommonBase.java @@ -24,6 +24,11 @@ public interface CommonBase boolean isLeaf();
//
+ // Unique within the scope of each parent
+ //
+ String getId();
+
+ //
// Add this node as a parent. This operation does something
// only when newParent a root node or was attached to a
// root node using addParent().
|