diff options
author | Bernard Normier <bernard@zeroc.com> | 2005-10-10 22:24:31 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2005-10-10 22:24:31 +0000 |
commit | ea938944ac62d3959193d4fb6fc8f0355be4d550 (patch) | |
tree | 7d7e3ff9e84d5db9d07bb9a67baa50d1200504be /java/src/IceGrid/TreeNode/CommonBase.java | |
parent | bug fix (diff) | |
download | ice-ea938944ac62d3959193d4fb6fc8f0355be4d550.tar.bz2 ice-ea938944ac62d3959193d4fb6fc8f0355be4d550.tar.xz ice-ea938944ac62d3959193d4fb6fc8f0355be4d550.zip |
Partial node edit + more actions
Diffstat (limited to 'java/src/IceGrid/TreeNode/CommonBase.java')
-rwxr-xr-x | java/src/IceGrid/TreeNode/CommonBase.java | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/java/src/IceGrid/TreeNode/CommonBase.java b/java/src/IceGrid/TreeNode/CommonBase.java index 377947dc52f..87e89ee4743 100755 --- a/java/src/IceGrid/TreeNode/CommonBase.java +++ b/java/src/IceGrid/TreeNode/CommonBase.java @@ -137,7 +137,15 @@ public interface CommonBase extends TreeCellRenderer static final int ENABLE = 20;
static final int DISABLE = 21;
- static public final int ACTION_COUNT = 22;
+ static final int SHUTDOWN_NODE = 22;
+
+ static final int APPLICATION_REFRESH_INSTALLATION = 23;
+ static final int APPLICATION_REFRESH_INSTALLATION_NO_SHUTDOWN = 24;
+
+ static final int SERVER_REFRESH_INSTALLATION = 25;
+ static final int SERVER_REFRESH_INSTALLATION_NO_SHUTDOWN = 26;
+
+ static public final int ACTION_COUNT = 27;
boolean[] getAvailableActions();
@@ -167,5 +175,10 @@ public interface CommonBase extends TreeCellRenderer void enable();
void disable();
+ void shutdownNode();
+
+ void applicationRefreshInstallation(boolean shutdown);
+ void serverRefreshInstallation(boolean shutdown);
+
JPopupMenu getPopupMenu();
}
|