Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Ross2012-11-07 15:29:54 +0000
committerJohn Ross2012-11-07 15:29:54 +0000
commit82e7c169846f5fd65aeb5ef9758ef9cbb032184f (patch)
tree5aac2a87527551eebad5181182d4b853c9be57aa /bundles/org.eclipse.equinox.console
parentec21eb4e37d764934e84fac5ee09179f3d66b12b (diff)
downloadrt.equinox.bundles-82e7c169846f5fd65aeb5ef9758ef9cbb032184f.tar.gz
rt.equinox.bundles-82e7c169846f5fd65aeb5ef9758ef9cbb032184f.tar.xz
rt.equinox.bundles-82e7c169846f5fd65aeb5ef9758ef9cbb032184f.zip
Bug 348993 - Minor updates to descriptions used by help command.
Diffstat (limited to 'bundles/org.eclipse.equinox.console')
-rwxr-xr-xbundles/org.eclipse.equinox.console/src/org/eclipse/equinox/console/commands/ConsoleMsg.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/bundles/org.eclipse.equinox.console/src/org/eclipse/equinox/console/commands/ConsoleMsg.java b/bundles/org.eclipse.equinox.console/src/org/eclipse/equinox/console/commands/ConsoleMsg.java
index 4d09386c4..5d3bca2d1 100755
--- a/bundles/org.eclipse.equinox.console/src/org/eclipse/equinox/console/commands/ConsoleMsg.java
+++ b/bundles/org.eclipse.equinox.console/src/org/eclipse/equinox/console/commands/ConsoleMsg.java
@@ -155,11 +155,11 @@ public class ConsoleMsg extends NLS {
public static final String CONSOLE_HELP_SETPROP_COMMAND_ARGUMENTS_DESCRIPTION = "list of properties with values to be set; the format is <key>=<value> and the pairs are separated with space if more than one";
public static final String CONSOLE_HELP_SS_COMMAND_DESCRIPTION = "display installed bundles (short status)";
public static final String CONSOLE_THREADS_COMMAND_DESCRIPTION = "display threads and thread groups";
- public static final String CONSOLE_THREADS_COMMAND_ACTION_DESCRIPTION = "perform the specified action on the named thread; supported actions are {stop}";
- public static final String CONSOLE_THREADS_COMMAND_ACTION_THROWABLE_DESCRIPTION = "perform the specified action on the named thread using the provided throwable; supported actions are {stop}";
- public static final String CONSOLE_THREADS_COMMAND_ARG_ACTION_DESCRIPTION = "the action to perform";
+ public static final String CONSOLE_THREADS_COMMAND_ACTION_DESCRIPTION = "stop the named thread with an IllegalStateException";
+ public static final String CONSOLE_THREADS_COMMAND_ACTION_THROWABLE_DESCRIPTION = "stop the named thread with the provided throwable";
+ public static final String CONSOLE_THREADS_COMMAND_ARG_ACTION_DESCRIPTION = "stop";
public static final String CONSOLE_THREADS_COMMAND_ARG_THREAD_DESCRIPTION = "the thread on which to perform the action";
- public static final String CONSOLE_THREADS_COMMAND_ARG_THROWABLE_DESCRIPTION = "the class of the throwable to be used in conjunction with the action (default = java.lang.IllegalStateException)";
+ public static final String CONSOLE_THREADS_COMMAND_ARG_THROWABLE_DESCRIPTION = "the class of the throwable to throw (default = java.lang.IllegalStateException)";
public static final String CONSOLE_HELP_SL_COMMAND_DESCRIPTION = "display the start level for the specified bundle, or for the framework if no bundle specified";
public static final String CONSOLE_HELP_SL_COMMAND_ARGUMENT_DESCRIPTION = "bundle to get the start level";
public static final String CONSOLE_HELP_SETFWSL_COMMAND_DESCRIPTION = "set the framework start level";

Back to the top