Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2016-06-01 17:41:30 +0000
committerLars Vogel2016-06-01 17:44:19 +0000
commit247c2a90f2c0565c886ad854bb2fa4217d8396da (patch)
treeb1400091d95c1bb8d747998ce3daf061b35a697a
parent283708f6ad91b2f47e2a6dfda86d4201905acc42 (diff)
downloadeclipse.platform.ua-247c2a90f2c0565c886ad854bb2fa4217d8396da.tar.gz
eclipse.platform.ua-247c2a90f2c0565c886ad854bb2fa4217d8396da.tar.xz
eclipse.platform.ua-247c2a90f2c0565c886ad854bb2fa4217d8396da.zip
Bug 44259 - Mark WorkbenchHelp, IHelp and related API for deletionI20160601-2000
Change-Id: If7d17ffd41a916c8412823af4192a6e383fdf181 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
-rw-r--r--org.eclipse.help/src/org/eclipse/help/IHelp.java22
1 files changed, 14 insertions, 8 deletions
diff --git a/org.eclipse.help/src/org/eclipse/help/IHelp.java b/org.eclipse.help/src/org/eclipse/help/IHelp.java
index 8addead87..8c6a56e5d 100644
--- a/org.eclipse.help/src/org/eclipse/help/IHelp.java
+++ b/org.eclipse.help/src/org/eclipse/help/IHelp.java
@@ -9,18 +9,24 @@
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.help;
+
/**
* Former interface to the help system UI.
*
- * @deprecated This interface became obsolete in 3.0, along with the extension
- * point that it was associated with. The functionality provided by
- * this interface is available elsewhere. Use
+ * @deprecated marked for deletion, see Bug 442959. This interface became
+ * obsolete in 3.0, along with the extension point that it was
+ * associated with. The functionality provided by this interface is
+ * available elsewhere. Use
* {@link org.eclipse.help.HelpSystem#getTocs HelpSystem.getTocs()}
- * and
- * {@link org.eclipse.help.HelpSystem#getContext HelpSystem.getContext(String)}
- * to obtain help resources. Use various display methods of
- * {@link org.eclipse.ui.help.WorkbenchHelp WorkbenchHelp}to
- * display help resources.
+ * and {@link org.eclipse.help.HelpSystem#getContext
+ * HelpSystem.getContext(String)} to obtain help resources. Use
+ * various display methods of
+ * {@link org.eclipse.ui.help.WorkbenchHelp WorkbenchHelp}to display
+ * help resources.
+ *
+ * @noinstantiate This class is not intended to be instantiated by clients.
+ * @noextend This class is not intended to be subclassed by clients.
+ * @noreference This class is not intended to be referenced by clients.
*/
@Deprecated
public interface IHelp {

Back to the top