Spec-Zone .ru
спецификации, руководства, описания, API
|
Package | Description |
---|---|
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 | 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 from 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[] |
SequentialTransition.cachedChildren |
private Animation[] |
ParallelTransition.cachedChildren |
private static Animation[] |
SequentialTransition.EMPTY_ANIMATION_ARRAY |
private static Animation[] |
ParallelTransition.EMPTY_ANIMATION_ARRAY |
Modifier and Type | Field and Description |
---|---|
private ObservableList<Animation> |
SequentialTransition.children |
private ObservableList<Animation> |
ParallelTransition.children |
private java.util.Collection<? extends Animation> |
SequentialTransitionBuilder.children |
private java.util.Collection<? extends Animation> |
ParallelTransitionBuilder.children |
Modifier and Type | Method and Description |
---|---|
ObservableList<Animation> |
SequentialTransition.getChildren()
A list of
Animations that will be
played sequentially. |
ObservableList<Animation> |
ParallelTransition.getChildren()
A list of
Animations that will be
played sequentially. |
Modifier and Type | Method and Description |
---|---|
void |
AnimationBuilder.applyTo(Animation x) |
SequentialTransitionBuilder |
SequentialTransitionBuilder.children(Animation... x)
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)
Add the given items to the List of items in the
children property for the instance constructed by this builder. |
private boolean |
SequentialTransition.startChild(Animation child,
int index) |
private boolean |
ParallelTransition.startChild(Animation child,
int index) |
Modifier and Type | Method and Description |
---|---|
SequentialTransitionBuilder |
SequentialTransitionBuilder.children(java.util.Collection<? extends Animation> x)
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)
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.
|
Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to