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
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2006, 2015 IBM Corporation and others.
* Copyright (c) 2006, 2025 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
Expand All @@ -26,7 +26,7 @@
* @since 3.2
* @deprecated as of 3.3, this class is no longer used.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-03")
public class AnimatorFactory {
/**
* Creates a new ControlAnimator for use by JFace in animating
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2006, 2015 IBM Corporation and others.
* Copyright (c) 2006, 2025 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
Expand All @@ -21,13 +21,14 @@
/**
* ControlAnimator provides a simple implementation to display or hide a control
* at the bottom of the parent composite. Other animations will be written as
* subclasses of this class. <p>
* subclasses of this class.
* <p>
* Instances of this class can be created using an AnimatorFactory.
*
* @since 3.2
* @deprecated as of 3.3, this class is no longer used
*/


@Deprecated(forRemoval = true, since = "2025-03")
public class ControlAnimator {
/** the control that will be displayed or hidden */
protected Control control;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2004, 2015 IBM Corporation and others.
* Copyright (c) 2004, 2025 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
Expand Down Expand Up @@ -211,7 +211,7 @@ public static void setComparator(Comparator<Object> comparator) {
* @since 3.2
* @deprecated this is no longer in use as of 3.3
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-03")
public static void setAnimatorFactory(AnimatorFactory factory) {
animatorFactory = factory;
}
Expand All @@ -224,7 +224,7 @@ public static void setAnimatorFactory(AnimatorFactory factory) {
* @since 3.2
* @deprecated this is no longer in use as of 3.3
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-03")
public static AnimatorFactory getAnimatorFactory() {
if (animatorFactory == null)
animatorFactory = new AnimatorFactory();
Expand Down
Loading