Skip to content

Commit d6af2f2

Browse files
committed
Mark AnimatorFactory(and friends) for removal
These haven't been used at all since Eclipse 3.3.
1 parent 23dc308 commit d6af2f2

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/AnimatorFactory.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2006, 2015 IBM Corporation and others.
2+
* Copyright (c) 2006, 2025 IBM Corporation and others.
33
*
44
* This program and the accompanying materials
55
* are made available under the terms of the Eclipse Public License 2.0
@@ -26,7 +26,7 @@
2626
* @since 3.2
2727
* @deprecated as of 3.3, this class is no longer used.
2828
*/
29-
@Deprecated
29+
@Deprecated(forRemoval = true, since = "2025-03")
3030
public class AnimatorFactory {
3131
/**
3232
* Creates a new ControlAnimator for use by JFace in animating

bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/ControlAnimator.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2006, 2015 IBM Corporation and others.
2+
* Copyright (c) 2006, 2025 IBM Corporation and others.
33
*
44
* This program and the accompanying materials
55
* are made available under the terms of the Eclipse Public License 2.0
@@ -21,13 +21,14 @@
2121
/**
2222
* ControlAnimator provides a simple implementation to display or hide a control
2323
* at the bottom of the parent composite. Other animations will be written as
24-
* subclasses of this class. <p>
24+
* subclasses of this class.
25+
* <p>
2526
* Instances of this class can be created using an AnimatorFactory.
2627
*
2728
* @since 3.2
29+
* @deprecated as of 3.3, this class is no longer used
2830
*/
29-
30-
31+
@Deprecated(forRemoval = true, since = "2025-03")
3132
public class ControlAnimator {
3233
/** the control that will be displayed or hidden */
3334
protected Control control;

bundles/org.eclipse.jface/src/org/eclipse/jface/util/Policy.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2004, 2015 IBM Corporation and others.
2+
* Copyright (c) 2004, 2025 IBM Corporation and others.
33
*
44
* This program and the accompanying materials
55
* are made available under the terms of the Eclipse Public License 2.0
@@ -211,7 +211,7 @@ public static void setComparator(Comparator<Object> comparator) {
211211
* @since 3.2
212212
* @deprecated this is no longer in use as of 3.3
213213
*/
214-
@Deprecated
214+
@Deprecated(forRemoval = true, since = "2025-03")
215215
public static void setAnimatorFactory(AnimatorFactory factory) {
216216
animatorFactory = factory;
217217
}
@@ -224,7 +224,7 @@ public static void setAnimatorFactory(AnimatorFactory factory) {
224224
* @since 3.2
225225
* @deprecated this is no longer in use as of 3.3
226226
*/
227-
@Deprecated
227+
@Deprecated(forRemoval = true, since = "2025-03")
228228
public static AnimatorFactory getAnimatorFactory() {
229229
if (animatorFactory == null)
230230
animatorFactory = new AnimatorFactory();

0 commit comments

Comments
 (0)