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.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/java/src/IceGridGUI/LiveActions.java b/java/src/IceGridGUI/LiveActions.java
index 3eadaa79fed..abc460c8af7 100755
--- a/java/src/IceGridGUI/LiveActions.java
+++ b/java/src/IceGridGUI/LiveActions.java
@@ -120,6 +120,16 @@ public class LiveActions
_array[TreeNode.SIGUSR2] = new SendSignal("SIGUSR2");
_array[TreeNode.SIGTERM] = new SendSignal("SIGTERM");
+ _array[TreeNode.WRITE_MESSAGE] = new AbstractAction("Write message")
+ {
+ public void actionPerformed(ActionEvent e)
+ {
+ _target.writeMessage();
+ }
+ };
+ _array[TreeNode.WRITE_MESSAGE].putValue(Action.SHORT_DESCRIPTION,
+ "Write message to stdout or stderr");
+
_array[TreeNode.SHUTDOWN_NODE] = new AbstractAction("Shutdown")
{