File tree Expand file tree Collapse file tree 3 files changed +10
-9
lines changed
bundles/org.eclipse.jface/src/org/eclipse/jface Expand file tree Collapse file tree 3 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 1
1
/*******************************************************************************
2
- * Copyright (c) 2006, 2015 IBM Corporation and others.
2
+ * Copyright (c) 2006, 2025 IBM Corporation and others.
3
3
*
4
4
* This program and the accompanying materials
5
5
* are made available under the terms of the Eclipse Public License 2.0
26
26
* @since 3.2
27
27
* @deprecated as of 3.3, this class is no longer used.
28
28
*/
29
- @ Deprecated
29
+ @ Deprecated ( forRemoval = true , since = "2025-03" )
30
30
public class AnimatorFactory {
31
31
/**
32
32
* Creates a new ControlAnimator for use by JFace in animating
Original file line number Diff line number Diff line change 1
1
/*******************************************************************************
2
- * Copyright (c) 2006, 2015 IBM Corporation and others.
2
+ * Copyright (c) 2006, 2025 IBM Corporation and others.
3
3
*
4
4
* This program and the accompanying materials
5
5
* are made available under the terms of the Eclipse Public License 2.0
21
21
/**
22
22
* ControlAnimator provides a simple implementation to display or hide a control
23
23
* 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>
25
26
* Instances of this class can be created using an AnimatorFactory.
26
27
*
27
28
* @since 3.2
29
+ * @deprecated as of 3.3, this class is no longer used
28
30
*/
29
-
30
-
31
+ @ Deprecated (forRemoval = true , since = "2025-03" )
31
32
public class ControlAnimator {
32
33
/** the control that will be displayed or hidden */
33
34
protected Control control ;
Original file line number Diff line number Diff line change 1
1
/*******************************************************************************
2
- * Copyright (c) 2004, 2015 IBM Corporation and others.
2
+ * Copyright (c) 2004, 2025 IBM Corporation and others.
3
3
*
4
4
* This program and the accompanying materials
5
5
* are made available under the terms of the Eclipse Public License 2.0
@@ -211,7 +211,7 @@ public static void setComparator(Comparator<Object> comparator) {
211
211
* @since 3.2
212
212
* @deprecated this is no longer in use as of 3.3
213
213
*/
214
- @ Deprecated
214
+ @ Deprecated ( forRemoval = true , since = "2025-03" )
215
215
public static void setAnimatorFactory (AnimatorFactory factory ) {
216
216
animatorFactory = factory ;
217
217
}
@@ -224,7 +224,7 @@ public static void setAnimatorFactory(AnimatorFactory factory) {
224
224
* @since 3.2
225
225
* @deprecated this is no longer in use as of 3.3
226
226
*/
227
- @ Deprecated
227
+ @ Deprecated ( forRemoval = true , since = "2025-03" )
228
228
public static AnimatorFactory getAnimatorFactory () {
229
229
if (animatorFactory == null )
230
230
animatorFactory = new AnimatorFactory ();
You can’t perform that action at this time.
0 commit comments