summaryrefslogtreecommitdiff
path: root/java/src/IceGrid/TreeNode/CommonBase.java
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2005-08-31 18:03:10 +0000
committerBernard Normier <bernard@zeroc.com>2005-08-31 18:03:10 +0000
commit61522ec8348235db993a23ba9267c608dd64c965 (patch)
tree851b8fda0d17fc0fd34954f496a4fc049b6f8ba6 /java/src/IceGrid/TreeNode/CommonBase.java
parentminor edits (diff)
downloadice-61522ec8348235db993a23ba9267c608dd64c965.tar.bz2
ice-61522ec8348235db993a23ba9267c608dd64c965.tar.xz
ice-61522ec8348235db993a23ba9267c608dd64c965.zip
Fixed build
Diffstat (limited to 'java/src/IceGrid/TreeNode/CommonBase.java')
-rwxr-xr-xjava/src/IceGrid/TreeNode/CommonBase.java15
1 files changed, 13 insertions, 2 deletions
diff --git a/java/src/IceGrid/TreeNode/CommonBase.java b/java/src/IceGrid/TreeNode/CommonBase.java
index 24c4357482a..b52afa78f2d 100755
--- a/java/src/IceGrid/TreeNode/CommonBase.java
+++ b/java/src/IceGrid/TreeNode/CommonBase.java
@@ -36,9 +36,10 @@ public interface CommonBase extends TreeCellRenderer
Model getModel();
//
- // Clean-up when removed from the tree
+ // Unregister this element with the enclosing application;
+ // often no-op
//
- void cleanup();
+ void unregister();
//
// Set this node as a parent, and recursively update
@@ -67,4 +68,14 @@ public interface CommonBase extends TreeCellRenderer
JPopupMenu getPopupMenu();
void displayProperties();
+
+ //
+ // Get properties
+ //
+ PropertiesHolder getPropertiesHolder();
+
+ //
+ // The enclosing editable
+ //
+ Editable getEditable();
}