Package | Description |
---|---|
com.sun.javafx.charts | |
com.sun.javafx.scene.control.skin | |
com.sun.scenario.animation.shared | |
javafx.animation |
Provides the set of classes for ease of use transition based animations.
|
javafx.scene.chart |
The JavaFX User Interface provides a set of chart components that
are a very convenient way for data visualization.
|
Modifier and Type | Field and Description |
---|---|
private java.util.Map<java.lang.Object,Animation> |
ChartLayoutAnimator.activeTimeLines |
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
ChartLayoutAnimator.animate(Animation animation)
Play a animation containing the given keyframes.
|
Modifier and Type | Class and Description |
---|---|
private static class |
ProgressBarSkin.IndeterminateTransition |
Modifier and Type | Field and Description |
---|---|
protected Animation |
ProgressIndicatorSkin.indeterminateTransition |
Modifier and Type | Field and Description |
---|---|
protected Animation |
ClipEnvelope.animation |
Modifier and Type | Method and Description |
---|---|
static ClipEnvelope |
ClipEnvelope.create(Animation animation) |
abstract void |
AnimationAccessor.finished(Animation animation) |
abstract void |
AnimationAccessor.jumpTo(Animation animation,
long pos,
long cycleTicks,
boolean forceJump) |
abstract void |
AnimationAccessor.playTo(Animation animation,
long pos,
long cycleTicks) |
abstract void |
AnimationAccessor.setCurrentRate(Animation animation,
double currentRate) |
abstract void |
AnimationAccessor.setCurrentTicks(Animation animation,
long ticks) |
Constructor and Description |
---|
ClipEnvelope(Animation animation) |
FiniteClipEnvelope(Animation animation) |
InfiniteClipEnvelope(Animation animation) |
SingleLoopClipEnvelope(Animation animation) |
Modifier and Type | Class and Description |
---|---|
class |
FadeTransition
This
Transition creates a fade effect animation that spans its
duration . |
class |
FillTransition
This
Transition creates an animation, that changes the filling of a
shape over a duration . |
class |
ParallelTransition
This
Transition plays a list of Animations in parallel. |
class |
PathTransition
This
Transition creates a path animation that spans its
PathTransition.duration . |
class |
PauseTransition
|
class |
RotateTransition
This
Transition creates a rotation animation that spans its
duration . |
class |
ScaleTransition
This
Transition creates a scale animation that spans its
ScaleTransition.duration . |
class |
SequentialTransition
This
Transition plays a list of Animations in sequential order. |
class |
StrokeTransition
This
Transition creates an animation, that changes the stroke color
of a shape over a duration . |
class |
Timeline
A
Timeline can be used to define a free form animation of any
WritableValue , e.g. |
class |
Transition
An abstract class that contains the basic functionalities required by all
Transition based animations, such as PathTransition and
RotateTransition . |
class |
TranslateTransition
This
Transition creates a move/translate animation that spans its
TranslateTransition.duration . |
Modifier and Type | Field and Description |
---|---|
private Animation[] |
ParallelTransition.cachedChildren |
private Animation[] |
SequentialTransition.cachedChildren |
private static Animation[] |
ParallelTransition.EMPTY_ANIMATION_ARRAY |
private static Animation[] |
SequentialTransition.EMPTY_ANIMATION_ARRAY |
(package private) Animation |
Animation.parent
The parent of this
Animation . |
Modifier and Type | Field and Description |
---|---|
private ObservableList<Animation> |
ParallelTransition.children |
private ObservableList<Animation> |
SequentialTransition.children |
private java.util.Collection<? extends Animation> |
SequentialTransitionBuilder.children
Deprecated.
|
private java.util.Collection<? extends Animation> |
ParallelTransitionBuilder.children
Deprecated.
|
private java.util.Set<Animation> |
ParallelTransition.childrenSet |
private java.util.Set<Animation> |
SequentialTransition.childrenSet |
Modifier and Type | Method and Description |
---|---|
ObservableList<Animation> |
ParallelTransition.getChildren()
A list of
Animations that will be
played sequentially. |
ObservableList<Animation> |
SequentialTransition.getChildren()
A list of
Animations that will be
played sequentially. |
Modifier and Type | Method and Description |
---|---|
void |
AnimationBuilder.applyTo(Animation x)
Deprecated.
|
private static boolean |
ParallelTransition.checkCycle(Animation child,
Animation parent) |
private static boolean |
SequentialTransition.checkCycle(Animation child,
Animation parent) |
SequentialTransitionBuilder |
SequentialTransitionBuilder.children(Animation... x)
Deprecated.
Add the given items to the List of items in the
children property for the instance constructed by this builder. |
ParallelTransitionBuilder |
ParallelTransitionBuilder.children(Animation... x)
Deprecated.
Add the given items to the List of items in the
children property for the instance constructed by this builder. |
void |
AnimationAccessorImpl.finished(Animation animation) |
void |
AnimationAccessorImpl.jumpTo(Animation animation,
long pos,
long cycleTicks,
boolean forceJump) |
void |
AnimationAccessorImpl.playTo(Animation animation,
long pos,
long cycleTicks) |
void |
AnimationAccessorImpl.setCurrentRate(Animation animation,
double currentRate) |
void |
AnimationAccessorImpl.setCurrentTicks(Animation animation,
long ticks) |
private boolean |
ParallelTransition.startChild(Animation child,
int index) |
private boolean |
SequentialTransition.startChild(Animation child,
int index) |
Modifier and Type | Method and Description |
---|---|
SequentialTransitionBuilder |
SequentialTransitionBuilder.children(java.util.Collection<? extends Animation> x)
Deprecated.
Add the given items to the List of items in the
children property for the instance constructed by this builder. |
ParallelTransitionBuilder |
ParallelTransitionBuilder.children(java.util.Collection<? extends Animation> x)
Deprecated.
Add the given items to the List of items in the
children property for the instance constructed by this builder. |
Constructor and Description |
---|
ParallelTransition(Animation... children)
The constructor of
ParallelTransition . |
ParallelTransition(Node node,
Animation... children)
The constructor of
ParallelTransition . |
SequentialTransition(Animation... children)
The constructor of
SequentialTransition . |
SequentialTransition(Node node,
Animation... children)
The constructor of
SequentialTransition . |
Modifier and Type | Method and Description |
---|---|
protected void |
Chart.animate(Animation animation)
Play the given animation on every frame of the animation the chart will be relayed out until the animation
finishes.
|