summaryrefslogtreecommitdiff
path: root/java/src/IceGridGUI/LiveActions.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/src/IceGridGUI/LiveActions.java')
-rwxr-xr-xjava/src/IceGridGUI/LiveActions.java11
1 files changed, 10 insertions, 1 deletions
diff --git a/java/src/IceGridGUI/LiveActions.java b/java/src/IceGridGUI/LiveActions.java
index 173025c3f9d..1f7335f9569 100755
--- a/java/src/IceGridGUI/LiveActions.java
+++ b/java/src/IceGridGUI/LiveActions.java
@@ -104,13 +104,22 @@ public class LiveActions
};
_array[TreeNode.SERVER_INSTALL_DISTRIBUTION] =
- new AbstractAction("Patch")
+ new AbstractAction("Patch distribution")
{
public void actionPerformed(ActionEvent e)
{
_target.serverInstallDistribution();
}
};
+
+ _array[TreeNode.ADD_OBJECT] =
+ new AbstractAction("Add well-known object")
+ {
+ public void actionPerformed(ActionEvent e)
+ {
+ _target.addObject();
+ }
+ };
}
private TreeNode _target;