Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ public void documentAboutToBeChanged(DocumentEvent event) {
* @since 2.0
* @deprecated As of 3.6, replaced by {@link Status#OK_STATUS}
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
static final protected IStatus STATUS_OK= new Status(IStatus.OK, TextEditorPlugin.PLUGIN_ID, IStatus.OK, EditorMessages.AbstractDocumentProvider_ok, null);

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2043,7 +2043,7 @@ private int computeOffsetAtLocation(ITextViewer textViewer, int x, int y) {
*
* @deprecated As of 2.1, replaced by {@link JFaceResources#TEXT_FONT}
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static final String PREFERENCE_FONT = JFaceResources.TEXT_FONT;
/**
* Key used to look up foreground color preference. Value:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ public Object getAnnotationType() {
* @return the marker type, or <code>null</code> if none is set
* @deprecated since 3.0
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public String getMarkerType() {
return fMarkerType;
}
Expand All @@ -497,7 +497,7 @@ public String getMarkerType() {
* @return the marker severity
* @deprecated since 3.0
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public int getSeverity() {
return fSeverity;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public FindNextAction(ResourceBundle bundle, String prefix, IWorkbenchPart workb
*
* @deprecated use FindReplaceAction(ResourceBundle, String, IWorkbenchPart, boolean) instead
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public FindNextAction(ResourceBundle bundle, String prefix, IWorkbenchWindow workbenchWindow, boolean forward) {
super(bundle, prefix);
fWorkbenchWindow= workbenchWindow;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ public FindReplaceAction(ResourceBundle bundle, String prefix, Shell shell, IFin
*
* @deprecated use FindReplaceAction(ResourceBundle, String, IWorkbenchPart) instead
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public FindReplaceAction(ResourceBundle bundle, String prefix, IWorkbenchWindow workbenchWindow) {
super(bundle, prefix);
fWorkbenchWindow= workbenchWindow;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ private HyperlinkDetectorDescriptor(IConfigurationElement element) {
* @throws CoreException if a failure occurred during creation
* @deprecated As of 3.9, replaced by {@link #createHyperlinkDetectorImplementation()}
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public AbstractHyperlinkDetector createHyperlinkDetector() throws CoreException {
return (AbstractHyperlinkDetector)createHyperlinkDetectorImplementation();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,22 +222,22 @@ public interface IAbstractTextEditorHelpContextIds {
* Value: <code>"org.eclipse.ui.bookmark_action_context"</code>
* @deprecated in 3.0 Use <code>org.eclipse.ui.texteditor.ITextEditorHelpContextIds.BOOKMARK_ACTION</code> instead.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
String BOOKMARK_ACTION= PREFIX + IWorkbenchActionConstants.BOOKMARK + ACTION_POSTFIX;

/**
* Help context id for the action.
* Value: <code>"org.eclipse.ui.addTask_action_context"</code>
* @deprecated in 3.0 Use <code>org.eclipse.ui.texteditor.ITextEditorHelpContextIds.ADD_TASK_ACTION</code> instead.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
String ADD_TASK_ACTION= PREFIX + IWorkbenchActionConstants.ADD_TASK + ACTION_POSTFIX;

/**
* Help context id for the action. Value: <code>"org.eclipse.ui.save_action_context"</code>
* @deprecated As of 3.5, no longer used
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
String SAVE_ACTION= PREFIX + ITextEditorActionConstants.SAVE + ACTION_POSTFIX;

/**
Expand All @@ -264,7 +264,7 @@ public interface IAbstractTextEditorHelpContextIds {
* @since 2.0
* @deprecated since 3.1. No longer supported as editor actions.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
String CONVERT_LINE_DELIMITERS_TO_WINDOWS= PREFIX + ITextEditorActionConstants.CONVERT_LINE_DELIMITERS_TO_WINDOWS + ACTION_POSTFIX;

/**
Expand All @@ -273,7 +273,7 @@ public interface IAbstractTextEditorHelpContextIds {
* @since 2.0
* @deprecated since 3.1. No longer supported as editor actions.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
String CONVERT_LINE_DELIMITERS_TO_UNIX= PREFIX + ITextEditorActionConstants.CONVERT_LINE_DELIMITERS_TO_UNIX + ACTION_POSTFIX;

/**
Expand All @@ -282,7 +282,7 @@ public interface IAbstractTextEditorHelpContextIds {
* @since 2.0
* @deprecated since 3.1 No longer supported as editor actions.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
String CONVERT_LINE_DELIMITERS_TO_MAC= PREFIX + ITextEditorActionConstants.CONVERT_LINE_DELIMITERS_TO_MAC + ACTION_POSTFIX;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -393,23 +393,23 @@ public interface ITextEditorActionDefinitionIds extends IWorkbenchActionDefiniti
* Value: <code>"org.eclipse.ui.edit.text.convert.lineDelimiters.toWindows"</code>
* @deprecated since 3.1. No longer supported as editor actions.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
String CONVERT_LINE_DELIMITERS_TO_WINDOWS= "org.eclipse.ui.edit.text.convert.lineDelimiters.toWindows"; //$NON-NLS-1$

/**
* Action definition id of the edit convert to Unix line delimiter action.
* Value: <code>"org.eclipse.ui.edit.text.convert.lineDelimiters.toUNIX"</code>
* @deprecated since 3.1. No longer supported as editor actions.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
String CONVERT_LINE_DELIMITERS_TO_UNIX= "org.eclipse.ui.edit.text.convert.lineDelimiters.toUNIX"; //$NON-NLS-1$

/**
* Action definition id of the edit convert to Mac line delimiter action.
* Value: <code>"org.eclipse.ui.edit.text.convert.lineDelimiters.toMac"</code>
* @deprecated since 3.1. No longer supported as editor actions.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
String CONVERT_LINE_DELIMITERS_TO_MAC= "org.eclipse.ui.edit.text.convert.lineDelimiters.toMac"; //$NON-NLS-1$


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public interface IWorkbenchActionDefinitionIds {
*
* @deprecated As of 3.5, replaced by {@link IWorkbenchCommandConstants#FILE_PRINT}
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static final String PRINT= IWorkbenchCommandConstants.FILE_PRINT;

/**
Expand All @@ -45,7 +45,7 @@ public interface IWorkbenchActionDefinitionIds {
*
* @deprecated As of 3.5, no longer used
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static final String SAVE= IWorkbenchCommandConstants.FILE_SAVE;

/**
Expand All @@ -54,7 +54,7 @@ public interface IWorkbenchActionDefinitionIds {
*
* @deprecated As of 3.4, replaced by {@link #REVERT}
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static final String REVERT_TO_SAVED= "org.eclipse.ui.edit.revertToSaved"; //$NON-NLS-1$

/**
Expand All @@ -64,7 +64,7 @@ public interface IWorkbenchActionDefinitionIds {
* @since 3.4
* @deprecated As of 3.5, replaced by {@link IWorkbenchCommandConstants#FILE_REVERT}
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static final String REVERT= IWorkbenchCommandConstants.FILE_REVERT;

/**
Expand All @@ -74,7 +74,7 @@ public interface IWorkbenchActionDefinitionIds {
* @deprecated As of 3.5, replaced by {@link IWorkbenchCommandConstants#FILE_PROPERTIES}
* @since 3.1
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static final String PROPERTIES= IWorkbenchCommandConstants.FILE_PROPERTIES;


Expand All @@ -86,7 +86,7 @@ public interface IWorkbenchActionDefinitionIds {
*
* @deprecated As of 3.5, replaced by {@link IWorkbenchCommandConstants#EDIT_CUT}
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static final String CUT= IWorkbenchCommandConstants.EDIT_CUT;

/**
Expand All @@ -95,7 +95,7 @@ public interface IWorkbenchActionDefinitionIds {
*
* @deprecated As of 3.5, replaced by {@link IWorkbenchCommandConstants#EDIT_COPY}
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static final String COPY= IWorkbenchCommandConstants.EDIT_COPY;

/**
Expand All @@ -104,7 +104,7 @@ public interface IWorkbenchActionDefinitionIds {
*
* @deprecated As of 3.5, replaced by {@link IWorkbenchCommandConstants#EDIT_PASTE}
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static final String PASTE= IWorkbenchCommandConstants.EDIT_PASTE;

/**
Expand All @@ -113,7 +113,7 @@ public interface IWorkbenchActionDefinitionIds {
*
* @deprecated As of 3.5, replaced by {@link IWorkbenchCommandConstants#EDIT_UNDO}
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static final String UNDO= IWorkbenchCommandConstants.EDIT_UNDO;

/**
Expand All @@ -122,7 +122,7 @@ public interface IWorkbenchActionDefinitionIds {
*
* @deprecated As of 3.5, replaced by {@link IWorkbenchCommandConstants#EDIT_REDO}
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static final String REDO= IWorkbenchCommandConstants.EDIT_REDO;

/**
Expand All @@ -131,7 +131,7 @@ public interface IWorkbenchActionDefinitionIds {
*
* @deprecated As of 3.5, replaced by {@link IWorkbenchCommandConstants#EDIT_DELETE}
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static final String DELETE= IWorkbenchCommandConstants.EDIT_DELETE;

/**
Expand All @@ -140,7 +140,7 @@ public interface IWorkbenchActionDefinitionIds {
*
* @deprecated As of 3.5, replaced by {@link IWorkbenchCommandConstants#EDIT_SELECT_ALL}
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static final String SELECT_ALL= IWorkbenchCommandConstants.EDIT_SELECT_ALL;

/**
Expand All @@ -149,7 +149,7 @@ public interface IWorkbenchActionDefinitionIds {
*
* @deprecated As of 3.5, replaced by {@link IWorkbenchCommandConstants#EDIT_FIND_AND_REPLACE}
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static final String FIND_REPLACE= IWorkbenchCommandConstants.EDIT_FIND_AND_REPLACE;

/**
Expand All @@ -158,7 +158,7 @@ public interface IWorkbenchActionDefinitionIds {
*
* @deprecated As of 3.5, replaced by {@link IWorkbenchCommandConstants#EDIT_ADD_BOOKMARK}
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static final String ADD_BOOKMARK= IWorkbenchCommandConstants.EDIT_ADD_BOOKMARK;

/**
Expand All @@ -167,7 +167,7 @@ public interface IWorkbenchActionDefinitionIds {
*
* @deprecated As of 3.5, replaced by {@link IWorkbenchCommandConstants#EDIT_ADD_TASK}
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static final String ADD_TASK= IWorkbenchCommandConstants.EDIT_ADD_TASK;

/**
Expand All @@ -177,7 +177,7 @@ public interface IWorkbenchActionDefinitionIds {
* @since 3.0
* @deprecated As of 3.5, replaced by {@link IWorkbenchCommandConstants#FILE_MOVE}
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static final String MOVE= IWorkbenchCommandConstants.FILE_MOVE;

/**
Expand All @@ -187,7 +187,7 @@ public interface IWorkbenchActionDefinitionIds {
* @since 3.0
* @deprecated As of 3.5, replaced by {@link IWorkbenchCommandConstants#FILE_RENAME}
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static final String RENAME= IWorkbenchCommandConstants.FILE_RENAME;


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public IncrementalFindAction(ResourceBundle bundle, String prefix, IWorkbenchPar
* @deprecated use FindReplaceAction(ResourceBundle, String, IWorkbenchPart, boolean) instead
* @since 2.1
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public IncrementalFindAction(ResourceBundle bundle, String prefix, IWorkbenchWindow workbenchWindow, boolean forward) {
super(bundle, prefix);
fWorkbenchWindow= workbenchWindow;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ private void replaceWith(IHandler newHandler) {
* @param contentAssistFacade the content assist facade
* @deprecated As of 3.5, this is a NOP since the framework installs this now
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public KeyBindingSupportForAssistant(ContentAssistantFacade contentAssistFacade) {
}

Expand All @@ -119,7 +119,7 @@ public KeyBindingSupportForAssistant(ISourceViewerExtension4 sourceViewerExtensi
* @param contentAssistant the content assist facade
* @deprecated As of 3.5, this is a NOP since the framework installs this now
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public KeyBindingSupportForAssistant(ContentAssistant contentAssistant) {
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public MoveLinesAction(ResourceBundle bundle, String prefix, ITextEditor editor,
* @deprecated As of 3.5, replaced by
* {@link #MoveLinesAction(ResourceBundle, String, ITextEditor, ITextViewer, boolean, boolean)}
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public MoveLinesAction(ResourceBundle bundle, String prefix, AbstractTextEditor editor, boolean upwards, boolean copy) {
this(bundle, prefix, editor, editor != null ? editor.getSourceViewer() : null, upwards, copy);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/**
* @deprecated no longer supported
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public final class PropagatingFontFieldEditor extends WorkbenchChainedTextFontFieldEditor {

/**
Expand All @@ -32,7 +32,7 @@ public final class PropagatingFontFieldEditor extends WorkbenchChainedTextFontFi
* @param parent the parent control
* @deprecated no longer supported
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public PropagatingFontFieldEditor(String name, String labelText, Composite parent) {
super(name, labelText, parent);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* @noextend This class is not intended to be subclassed by clients.
* @deprecated As of 3.5, replaced by {@link org.eclipse.ui.actions.ActionFactory#SAVE}
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public class SaveAction extends TextEditorAction {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ public void setMatchingCharacterPainterPreferenceKeys(String enableKey, String c
* the symbolic font name
* @deprecated As of 4.8, this is no longer used
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public void setSymbolicFontName(String symbolicFontName) {
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* @deprecated No longer used, create a {@link CoreException} instead
* @since 2.1
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public class ValidateStateException extends CoreException {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public boolean isPluginLoaded() {
* @return the default attribute value for this extension.
* @deprecated as of 3.2, the default flag should not be used any longer
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public boolean getDefault() {
if (fDefault == null) {
String def= fConfiguration.getAttribute(DEFAULT_ATTRIBUTE);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public abstract class SpellingProblem {
* @since 3.3
* @deprecated As of 3.4, replaced by {@link #removeAll(ISourceViewer, String)}
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static void removeAllInActiveEditor(ITextEditor editor, String word) {
if (editor == null) {
return;
Expand Down
Loading
Loading