Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2019-02-11 07:37:46 +0000
committerThomas Watson2019-02-11 14:09:39 +0000
commit9ec538f7d3d570d009d4ef5959aad02ea24e902d (patch)
tree9a777cc000bad5f849e05fb224bebb448a7bd724
parentfc135dad38ae8ffe278d7ff20d9eb2b1d186c127 (diff)
downloadrt.equinox.framework-9ec538f7d3d570d009d4ef5959aad02ea24e902d.tar.gz
rt.equinox.framework-9ec538f7d3d570d009d4ef5959aad02ea24e902d.tar.xz
rt.equinox.framework-9ec538f7d3d570d009d4ef5959aad02ea24e902d.zip
Bug 544262 - Deprecate and mark for deletion
org.eclipse.core.launcher#Main and WebStartMain Change-Id: Ica39847c64b0017c0eb226b7d8bd5dfa9a723c48 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
-rw-r--r--bundles/org.eclipse.equinox.launcher/src/org/eclipse/core/launcher/Main.java3
-rw-r--r--bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/WebStartMain.java4
2 files changed, 7 insertions, 0 deletions
diff --git a/bundles/org.eclipse.equinox.launcher/src/org/eclipse/core/launcher/Main.java b/bundles/org.eclipse.equinox.launcher/src/org/eclipse/core/launcher/Main.java
index 56ac26fc2..51a55e6ab 100644
--- a/bundles/org.eclipse.equinox.launcher/src/org/eclipse/core/launcher/Main.java
+++ b/bundles/org.eclipse.equinox.launcher/src/org/eclipse/core/launcher/Main.java
@@ -24,7 +24,10 @@ package org.eclipse.core.launcher;
* on this class are not API.
* @noextend This class is not intended to be subclassed by clients.
* @noinstantiate This class is not intended to be instantiated by clients.
+ * @noreference This class is not intended to be referenced by clients.
* @deprecated
+ *
+ * This API is planned to be deleted, see https://bugs.eclipse.org/bugs/show_bug.cgi?id=544262
*/
@Deprecated
diff --git a/bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/WebStartMain.java b/bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/WebStartMain.java
index 64380e1d8..961fda8e9 100644
--- a/bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/WebStartMain.java
+++ b/bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/WebStartMain.java
@@ -34,7 +34,11 @@ import java.util.zip.ZipFile;
*
* @noextend This class is not intended to be subclassed by clients.
* @noinstantiate This class is not intended to be instantiated by clients.
+ * @noreference This class is not intended to be referenced by clients.
* @deprecated Java WebStart is removed in Java 11.
+ *
+ * This API is planned to be deleted, see https://bugs.eclipse.org/bugs/show_bug.cgi?id=544262
+ *
*/
//The bundles are discovered by finding all the jars on the classpath. Then they are added with their full path to the osgi.bundles list.
@Deprecated

Back to the top