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 @@ -307,7 +307,7 @@ public String getTitle() {
* @return the tool tip text, or <code>null</code> if none
* @deprecated
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2026-03")
protected final String getToolTipText(int widgetId) {
// return nothing by default
return null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ protected Control createDialogArea(Composite parent) {
* @return the error message label
* @deprecated use setErrorMessage(String) instead
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2026-03")
protected Label getErrorMessageLabel() {
return null;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
* @since 3.2
* @deprecated As of 3.3, this class is no longer necessary.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2026-03")
public class FieldAssistColors {

private static boolean DEBUG = false;
Expand Down Expand Up @@ -77,7 +77,7 @@ public class FieldAssistColors {
* @return the RGB value indicating a background color appropriate for
* indicating an error in the control.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2026-03")
public static RGB computeErrorFieldBackgroundRGB(Control control) {
/*
* Use a 10% alpha of the error color applied on top of the widget
Expand Down Expand Up @@ -110,7 +110,7 @@ public static RGB computeErrorFieldBackgroundRGB(Control control) {
* the control on which the background color will be used.
* @return the color used to indicate that a field is required.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2026-03")
public static Color getRequiredFieldBackgroundColor(Control control) {
final Display display = control.getDisplay();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @deprecated As of 3.3, clients should use {@link ControlDecoration} instead
* of {@link DecoratedField}.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2026-03")
public class TextControlCreator implements IControlCreator {

@Deprecated
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ public String getPreferenceName() {
* @return the preference page, or <code>null</code> if none
* @deprecated use #getPage()
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2026-03")
protected PreferencePage getPreferencePage() {
if(page != null && page instanceof PreferencePage) {
return (PreferencePage) page;
Expand Down Expand Up @@ -591,7 +591,7 @@ public void setPreferenceName(String name) {
* @param preferencePage the preference page, or <code>null</code> if none
* @deprecated use #setPage(DialogPage)
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2026-03")
public void setPreferencePage(PreferencePage preferencePage) {
setPage(preferencePage);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public abstract class ColorDescriptor extends DeviceResourceDescriptor<Color> {
* original Color's constructor.
* @return a newly created ColorDescriptor that describes the given Color.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2026-03")
public static ColorDescriptor createFrom(Color toCreate, Device originalDevice) {
return new RGBColorDescriptor(toCreate);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ protected int getTransparentPixel() {
* @deprecated This method doesn't make sense and should never have been
* made API.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2026-03")
protected void setImageData(ImageData imageData) {
this.imageData = imageData;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public abstract class FontDescriptor extends DeviceResourceDescriptor<Font> {
* the font's constructor when it was first created.
* @return a newly created FontDescriptor.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2026-03")
public static FontDescriptor createFrom(Font font, Device originalDevice) {
return new ArrayFontDescriptor(font);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ public static ImageDescriptor createWithFlags(ImageDescriptor originalImage, int
* @param theDevice the device that was used to create the Image
* @return a newly created image descriptor
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2026-03")
public static ImageDescriptor createFromImage(Image img, Device theDevice) {
return new ImageDataImageDescriptor(img);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ public final Font createFont(FontDescriptor descriptor) {
* @param descriptor description of the font to destroy
* @deprecated use {@link #destroy(DeviceResourceDescriptor)} instead
*/
@Deprecated(since = "3.31")
@Deprecated(forRemoval = true, since = "2026-03")
public final void destroyFont(FontDescriptor descriptor) {
destroy(descriptor);
}
Expand Down
Loading