Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2007-02-23 17:11:25 +0000
committerThomas Watson2007-02-23 17:11:25 +0000
commitd752638511f0a02a6b0c41b6121a4b40e6bcd225 (patch)
treec5ee3735df27637f793706066208a321114d4b66
parentd61f0e8aadebeaacb2e248b12a2bb527cc521514 (diff)
downloadrt.equinox.bundles-d752638511f0a02a6b0c41b6121a4b40e6bcd225.tar.gz
rt.equinox.bundles-d752638511f0a02a6b0c41b6121a4b40e6bcd225.tar.xz
rt.equinox.bundles-d752638511f0a02a6b0c41b6121a4b40e6bcd225.zip
Bug 175140 Incorrect javadoc on IPlatformRunnable.EXIT_RELAUNCH
-rwxr-xr-xbundles/org.eclipse.equinox.app/src/org/eclipse/equinox/app/IApplication.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.app/src/org/eclipse/equinox/app/IApplication.java b/bundles/org.eclipse.equinox.app/src/org/eclipse/equinox/app/IApplication.java
index db2706323..1b62b4a5e 100755
--- a/bundles/org.eclipse.equinox.app/src/org/eclipse/equinox/app/IApplication.java
+++ b/bundles/org.eclipse.equinox.app/src/org/eclipse/equinox/app/IApplication.java
@@ -36,7 +36,8 @@ public interface IApplication {
/**
* Exit object requesting that the command passed back be executed. Typically
- * this is used to relaunch Eclipse with different command line arguments.
+ * this is used to relaunch Eclipse with different command line arguments. When the executable is
+ * relaunched the command line will be retrieved from the <code>eclipse.exitdata</code> system property.
*/
public static final Integer EXIT_RELAUNCH = new Integer(24);

Back to the top