Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarsten Thoms2019-02-11 19:33:29 +0000
committerKarsten Thoms2019-02-11 19:33:29 +0000
commit77ef8ad44bc404223957e40ba8e467080c0e1f26 (patch)
treec1eaa4fea96478f00abef9d14900d85f36c652bb /org.eclipse.ui.editors/src
parent3db8c41531f3660150594a387d12145dab0767a5 (diff)
downloadeclipse.platform.text-77ef8ad44bc404223957e40ba8e467080c0e1f26.tar.gz
eclipse.platform.text-77ef8ad44bc404223957e40ba8e467080c0e1f26.tar.xz
eclipse.platform.text-77ef8ad44bc404223957e40ba8e467080c0e1f26.zip
Bug 544309 - Mark EncodingActionGroup & related for removal
Change-Id: Id70eb30bd39b59a20f41209689f8cf2aa5ca95e0 Signed-off-by: Karsten Thoms <karsten.thoms@itemis.de>
Diffstat (limited to 'org.eclipse.ui.editors/src')
-rw-r--r--org.eclipse.ui.editors/src/org/eclipse/ui/editors/text/EncodingActionGroup.java5
-rw-r--r--org.eclipse.ui.editors/src/org/eclipse/ui/editors/text/IEncodingActionsConstants.java6
-rw-r--r--org.eclipse.ui.editors/src/org/eclipse/ui/editors/text/IEncodingActionsDefinitionIds.java6
-rw-r--r--org.eclipse.ui.editors/src/org/eclipse/ui/editors/text/IEncodingActionsHelpContextIds.java6
4 files changed, 16 insertions, 7 deletions
diff --git a/org.eclipse.ui.editors/src/org/eclipse/ui/editors/text/EncodingActionGroup.java b/org.eclipse.ui.editors/src/org/eclipse/ui/editors/text/EncodingActionGroup.java
index 58a441b956d..596da5227c3 100644
--- a/org.eclipse.ui.editors/src/org/eclipse/ui/editors/text/EncodingActionGroup.java
+++ b/org.eclipse.ui.editors/src/org/eclipse/ui/editors/text/EncodingActionGroup.java
@@ -48,8 +48,11 @@ import org.eclipse.ui.texteditor.TextEditorAction;
/**
* Action group for encoding actions.
+ *
* @since 2.0
- * @deprecated As of 3.1, encoding needs to be changed via properties dialog
+ * @deprecated As of 3.1, encoding needs to be changed via properties dialog. This class is planned
+ * for removal after March 2021.
+ * @noreference This class is not intended to be referenced by clients.
*/
@Deprecated
public class EncodingActionGroup extends ActionGroup {
diff --git a/org.eclipse.ui.editors/src/org/eclipse/ui/editors/text/IEncodingActionsConstants.java b/org.eclipse.ui.editors/src/org/eclipse/ui/editors/text/IEncodingActionsConstants.java
index 7a109305ae0..cfb88b07559 100644
--- a/org.eclipse.ui.editors/src/org/eclipse/ui/editors/text/IEncodingActionsConstants.java
+++ b/org.eclipse.ui.editors/src/org/eclipse/ui/editors/text/IEncodingActionsConstants.java
@@ -17,10 +17,12 @@ package org.eclipse.ui.editors.text;
/**
* Defines the names of the encoding actions.
* <p>
- * This interface contains constants only; it is not intended to be implemented.</p>
+ * This interface contains constants only; it is not intended to be implemented.
+ * </p>
*
* @since 2.0
- * @deprecated As of 3.1, encoding needs to be changed via properties dialog
+ * @deprecated As of 3.1, encoding needs to be changed via properties dialog. This interface is
+ * planned for removal after March 2021.
* @noimplement This interface is not intended to be implemented by clients.
* @noextend This interface is not intended to be extended by clients.
*
diff --git a/org.eclipse.ui.editors/src/org/eclipse/ui/editors/text/IEncodingActionsDefinitionIds.java b/org.eclipse.ui.editors/src/org/eclipse/ui/editors/text/IEncodingActionsDefinitionIds.java
index 22a71af74a0..8003b2e1ae2 100644
--- a/org.eclipse.ui.editors/src/org/eclipse/ui/editors/text/IEncodingActionsDefinitionIds.java
+++ b/org.eclipse.ui.editors/src/org/eclipse/ui/editors/text/IEncodingActionsDefinitionIds.java
@@ -17,10 +17,12 @@ package org.eclipse.ui.editors.text;
/**
* Defines the definition IDs for the encoding actions.
* <p>
- * This interface contains constants only; it is not intended to be implemented.</p>
+ * This interface contains constants only; it is not intended to be implemented.
+ * </p>
*
* @since 2.0
- * @deprecated As of 3.1, encoding needs to be changed via properties dialog
+ * @deprecated As of 3.1, encoding needs to be changed via properties dialog. This interface is
+ * planned for removal after March 2021.
* @noimplement This interface is not intended to be implemented by clients.
* @noextend This interface is not intended to be extended by clients.
*/
diff --git a/org.eclipse.ui.editors/src/org/eclipse/ui/editors/text/IEncodingActionsHelpContextIds.java b/org.eclipse.ui.editors/src/org/eclipse/ui/editors/text/IEncodingActionsHelpContextIds.java
index ed82478a399..1ac89011134 100644
--- a/org.eclipse.ui.editors/src/org/eclipse/ui/editors/text/IEncodingActionsHelpContextIds.java
+++ b/org.eclipse.ui.editors/src/org/eclipse/ui/editors/text/IEncodingActionsHelpContextIds.java
@@ -19,10 +19,12 @@ import org.eclipse.ui.texteditor.IAbstractTextEditorHelpContextIds;
/**
* Help context IDs for the encoding actions.
* <p>
- * This interface contains constants only; it is not intended to be implemented.</p>
+ * This interface contains constants only; it is not intended to be implemented.
+ * </p>
*
* @since 2.0
- * @deprecated As of 3.1, encoding needs to be changed via properties dialog
+ * @deprecated As of 3.1, encoding needs to be changed via properties dialog. This interface is
+ * planned for removal after March 2021.
* @noimplement This interface is not intended to be implemented by clients.
* @noextend This interface is not intended to be extended by clients.
*/

Back to the top