summaryrefslogtreecommitdiff
path: root/java/src/IceGridGUI/LiveDeployment/TreeNode.java
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2012-11-01 00:16:56 +0100
committerJose <jose@zeroc.com>2012-11-01 00:16:56 +0100
commit92067a985f1c7cf25d7b5ce3db8ddf80e89682c9 (patch)
tree12bab0a8a8dbfbacd6348a619995b42becd41007 /java/src/IceGridGUI/LiveDeployment/TreeNode.java
parentFixed IceStorm metrics issues (diff)
downloadice-92067a985f1c7cf25d7b5ce3db8ddf80e89682c9.tar.bz2
ice-92067a985f1c7cf25d7b5ce3db8ddf80e89682c9.tar.xz
ice-92067a985f1c7cf25d7b5ce3db8ddf80e89682c9.zip
IceGridGUI metrics fixes:
* Update the GUI to also display disabled metrics * Add enable/disable popup menu to metris views, correspoding to new methods enableMetricsView/disableMetricsView in Metrics.ice * Fixed ICE-4919 ConnectionRefusedException error dialog keeps popping up * Fixed ICE-4917 bogus IceGrid GUI error message
Diffstat (limited to 'java/src/IceGridGUI/LiveDeployment/TreeNode.java')
-rw-r--r--java/src/IceGridGUI/LiveDeployment/TreeNode.java10
1 files changed, 9 insertions, 1 deletions
diff --git a/java/src/IceGridGUI/LiveDeployment/TreeNode.java b/java/src/IceGridGUI/LiveDeployment/TreeNode.java
index 60fe0b36b2f..affd94985e3 100644
--- a/java/src/IceGridGUI/LiveDeployment/TreeNode.java
+++ b/java/src/IceGridGUI/LiveDeployment/TreeNode.java
@@ -61,7 +61,10 @@ public abstract class TreeNode extends TreeNodeBase
public static final int OPEN_DEFINITION = 19;
- static public final int ACTION_COUNT = 20;
+ static public final int ENABLE_METRICS_VIEW = 20;
+ static public final int DISABLE_METRICS_VIEW = 21;
+
+ static public final int ACTION_COUNT = 22;
public boolean[] getAvailableActions()
{
@@ -121,6 +124,11 @@ public abstract class TreeNode extends TreeNodeBase
assert false;
}
+ public void enableMetricsView(boolean enabled)
+ {
+ assert false;
+ }
+
//
// Helpers
//