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 @@ -89,7 +89,7 @@ public ExecutionEvent() {
* @deprecated use
* {@link ExecutionEvent#ExecutionEvent(Command, Map, Object, Object)}
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public ExecutionEvent(@SuppressWarnings("rawtypes") final Map parameters, final Object trigger,
final Object applicationContext) {
this(null, parameters, trigger, applicationContext);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public final class ParameterizedCommand implements Comparable {
*
* @deprecated no longer used
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static final int INDEX_PARAMETER_ID = 0;

/**
Expand All @@ -72,7 +72,7 @@ public final class ParameterizedCommand implements Comparable {
*
* @deprecated no longer used
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static final int INDEX_PARAMETER_NAME = 1;

/**
Expand All @@ -81,15 +81,15 @@ public final class ParameterizedCommand implements Comparable {
*
* @deprecated no longer used
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static final int INDEX_PARAMETER_VALUE_NAME = 2;

/**
* The index of the value of the parameter that the command can understand.
*
* @deprecated no longer used
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static final int INDEX_PARAMETER_VALUE_VALUE = 3;

/**
Expand Down Expand Up @@ -450,7 +450,7 @@ public boolean equals(final Object object) {
* @deprecated Please use {@link #executeWithChecks(Object, Object)}
* instead.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public Object execute(final Object trigger, final Object applicationContext)
throws ExecutionException, NotHandledException {
return command.execute(new ExecutionEvent(command, getParameterMap(), trigger, applicationContext));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ private static <E> int listIndexOf(List<E> list, Object object, int index) {
* <code>false</code> otherwise.
* @deprecated Use {@link Objects#equals(Object, Object)} instead
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static final boolean equals(final Object left, final Object right) {
return Objects.equals(left, right);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public void addContext(DataBindingContext context, boolean trackTargets, boolean
* @param runnable the runnable to execute
* @since 1.2
*/
@Deprecated(since = "1.11.0")
@Deprecated(forRemoval = true, since = "2025-12")
public void runAndCollect(Runnable runnable) {
IObservable[] collected = ObservableTracker.runAndCollect(runnable);
for (IObservable observable : collected) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
*******************************************************************************/
package org.eclipse.e4.ui.internal.css.swt;

import org.eclipse.core.runtime.ILog;
import org.eclipse.swt.graphics.Color;

public interface ICTabRendering {
Expand All @@ -39,18 +38,8 @@ public interface ICTabRendering {

void setOuterKeyline(Color color);

@Deprecated(forRemoval = true)
default void setShadowColor(Color color) {
ILog.of(ICTabRendering.class).info("setShadowColor not supported anymore in platform renderer");
}

void setCornerRadius(int radius);

@Deprecated(forRemoval = true)
default void setShadowVisible(boolean visible) {
ILog.of(ICTabRendering.class).info("setShadowVisible not supported anymore in platform renderer");
}

/**
* Sets whether to use a custom tab background (reusing tab colors and
* gradients), or default one from plain CTabFolder (using widget background
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@
* @model
* @generated
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public interface MWizardDialog extends MDialog {
} // MWizardDialog
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public class ProgressManager extends ProgressProvider {
*
* @deprecated use IProgressConstants#PROPERTY_IN_DIALOG instead
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static final QualifiedName PROPERTY_IN_DIALOG = IProgressConstants.PROPERTY_IN_DIALOG;

private static final String ERROR_JOB = "errorstate.svg"; //$NON-NLS-1$
Expand Down Expand Up @@ -622,7 +622,7 @@ public JobInfo removeJob(Job job) {
* @deprecated use the more thread safe {@link #removeJob(Job)} instead. See bug
* 558655.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public void removeJobInfo(JobInfo info) {
removeJob(info.getJob());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ public XpathtestPackage getXpathtestPackage() {
* @deprecated
* @generated
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-12")
public static XpathtestPackage getPackage() {
return XpathtestPackage.eINSTANCE;
}
Expand Down
Loading