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 @@ -34,7 +34,7 @@ public interface IServiceConstants {
*
* @noreference This field is not intended to be referenced by clients.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static final String SELECTION = ACTIVE_SELECTION;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public interface IStylingEngine {
* @deprecated please use IStylingEngine.class or
* IStylingEngine.class.getName() for context access
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static final String SERVICE_NAME = IStylingEngine.class.getName();

public void setClassname(Object widget, String classname);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ public interface IPresentationEngine {
*
* @deprecated not supported in the Eclipse platform anymore
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
String ANIMATIONS_ENABLED = "Animations Enabled"; //$NON-NLS-1$

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public interface ESelectionService {
* {@link IServiceConstants#ACTIVE_SELECTION}. All clients of this API should change their
* references to <code>IServiceConstants.ACTIVE_SELECTION</code>.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static final String SELECTION = IServiceConstants.ACTIVE_SELECTION; // "in.selection";

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public interface IModelProcessorContribution {
* {@link Beforefragment @Beforefragment(true|false)} component
* property type
*/
@Deprecated(forRemoval = true, since = "1.16")
@Deprecated(forRemoval = true, since = "2025-12")
String BEFORE_FRAGMENT_PROPERTY_PREFIX = "beforefragment:Boolean="; //$NON-NLS-1$

/**
Expand Down Expand Up @@ -88,7 +88,7 @@ public interface IModelProcessorContribution {
* @deprecated Instead annotate the component with the {@link Apply @Apply(&lt;
* a-value &gt;)} component property type
*/
@Deprecated(forRemoval = true, since = "1.16")
@Deprecated(forRemoval = true, since = "2025-12")
String APPLY_PROPERTY_PREFIX = "apply="; //$NON-NLS-1$

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ protected boolean internalProcessOnCancel(Change change) {
*
* @deprecated use {@link #ProcessorBasedRefactoring(RefactoringProcessor)} instead
*/
@Deprecated
@Deprecated(forRemoval= true, since= "2025-12")
protected ProcessorBasedRefactoring() {
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
*
* @noextend This class is not intended to be subclassed by clients.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public class RedoRefactoringAction extends UndoManagerAction {

private int fPatternLength;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ public static Composite createSortableRefactoringHistoryControl(Composite parent
* @deprecated use {@link PerformChangeOperation#PerformChangeOperation(Change)}.
* Since 3.1, undo batching is implemented in {@link TextChange}.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static PerformChangeOperation createUIAwareChangeOperation(Change change) {
return new PerformChangeOperation(change);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public abstract class RefactoringWizard extends Wizard {
/**
* @deprecated Use {@link #DIALOG_BASED_USER_INTERFACE} instead.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static final int DIALOG_BASED_UESR_INTERFACE= DIALOG_BASED_USER_INTERFACE;

/**
Expand Down Expand Up @@ -356,7 +356,7 @@ public final Change getChange() {
* @deprecated {@link #WIZARD_BASED_USER_INTERFACE} always shows a '?' button.
* To show the button with {@link #DIALOG_BASED_USER_INTERFACE}, add the {@link #SHOW_HELP_CONTROL} flag.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
@Override
public void setHelpAvailable(boolean b) {
super.setHelpAvailable(b);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
*
* @noextend This class is not intended to be subclassed by clients.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public class UndoRefactoringAction extends UndoManagerAction {

private int fPatternLength;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public static ISearchResultViewPart getSearchResultView() {
* Use {@link #runQueryInBackground(ISearchQuery)} to run a query in background
* or {@link #runQueryInForeground(IRunnableContext, ISearchQuery)} to run it in foreground
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static void runQuery(ISearchQuery query) {
if (query == null) {
throw new IllegalArgumentException("query must not be null"); //$NON-NLS-1$
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,6 @@
import org.eclipse.core.resources.IWorkspaceDescription;
import org.eclipse.core.resources.ResourcesPlugin;

import org.eclipse.jface.action.GroupMarker;
import org.eclipse.jface.action.IMenuManager;
import org.eclipse.jface.action.Separator;
import org.eclipse.jface.dialogs.IDialogSettings;

import org.eclipse.ui.IWorkbenchPage;
Expand All @@ -48,7 +45,6 @@
import org.eclipse.search.internal.core.SearchCorePlugin;
import org.eclipse.search.internal.core.text.TextSearchEngineRegistry;
import org.eclipse.search.internal.ui.util.ExceptionHandler;
import org.eclipse.search.ui.IContextMenuConstants;
import org.eclipse.search.ui.NewSearchUI;

import org.eclipse.search2.internal.ui.InternalSearchUI;
Expand Down Expand Up @@ -320,29 +316,4 @@ public static void log(Throwable e) {
public static String getID() {
return NewSearchUI.PLUGIN_ID;
}

/**
* Creates the Search plugin standard groups in a context menu.
*
* @param menu the menu to create in
* @deprecated old search
*/
@Deprecated
public static void createStandardGroups(IMenuManager menu) {
if (!menu.isEmpty()) {
return;
}
menu.add(new Separator(IContextMenuConstants.GROUP_NEW));
menu.add(new GroupMarker(IContextMenuConstants.GROUP_GOTO));
menu.add(new GroupMarker(IContextMenuConstants.GROUP_OPEN));
menu.add(new Separator(IContextMenuConstants.GROUP_SHOW));
menu.add(new Separator(IContextMenuConstants.GROUP_BUILD));
menu.add(new Separator(IContextMenuConstants.GROUP_REORGANIZE));
menu.add(new Separator(IContextMenuConstants.GROUP_REMOVE_MATCHES));
menu.add(new GroupMarker(IContextMenuConstants.GROUP_GENERATE));
menu.add(new Separator(IContextMenuConstants.GROUP_SEARCH));
menu.add(new Separator(IContextMenuConstants.GROUP_ADDITIONS));
menu.add(new Separator(IContextMenuConstants.GROUP_VIEWER_SETUP));
menu.add(new Separator(IContextMenuConstants.GROUP_PROPERTIES));
}
}
Loading