public final class FillTransition extends Transition
Transition creates an animation, that changes the filling of a
 shape over a duration. This is done by updating the fill
 variable of the shape at regular intervals.
 
 It starts from the fromValue if provided else uses the shape
 's fill value. (The stroke value has to be a
 Color in this case).
 
 It stops at the toValue value.
 
Code Segment Example:
 
 import javafx.scene.shape.*;
 import javafx.animation.*;
 ...
     Rectangle rect = new Rectangle (100, 40, 100, 100);
     rect.setArcHeight(50);
     rect.setArcWidth(50);
     FillTransition ft = new FillTransition(Duration.millis(3000), rect, Color.RED, Color.BLUE);
     ft.setCycleCount(4);
     ft.setAutoReverse(true);
     ft.play();
 ...
 
 - Since:
- JavaFX 2.0
- See Also:
- Transition,- Animation
- 
Property SummaryProperties Type Property Description ObjectProperty<Duration>durationThe duration of thisFillTransition.ObjectProperty<Color>fromValueSpecifies the start color value for thisFillTransition.ObjectProperty<Shape>shapeThe target shape of thisFillTransition.ObjectProperty<Color>toValueSpecifies the stop color value for thisFillTransition.Properties inherited from class javafx.animation.TransitioninterpolatorProperties inherited from class javafx.animation.AnimationautoReverse, currentRate, currentTime, cycleCount, cycleDuration, delay, onFinished, rate, status, totalDuration
- 
Nested Class SummaryNested classes/interfaces inherited from class javafx.animation.AnimationAnimation.Status
- 
Field SummaryFields inherited from class javafx.animation.AnimationINDEFINITE
- 
Constructor SummaryConstructors Constructor Description FillTransition()The constructor ofFillTransitionFillTransition(Duration duration)The constructor ofFillTransitionFillTransition(Duration duration, Color fromValue, Color toValue)The constructor ofFillTransitionFillTransition(Duration duration, Shape shape)The constructor ofFillTransitionFillTransition(Duration duration, Shape shape, Color fromValue, Color toValue)The constructor ofFillTransition
- 
Method SummaryModifier and Type Method Description ObjectProperty<Duration>durationProperty()The duration of thisFillTransition.ObjectProperty<Color>fromValueProperty()Specifies the start color value for thisFillTransition.DurationgetDuration()Gets the value of the property duration.ColorgetFromValue()Gets the value of the property fromValue.ShapegetShape()Gets the value of the property shape.ColorgetToValue()Gets the value of the property toValue.protected voidinterpolate(double frac)The methodinterpolate()has to be provided by implementations ofTransition.voidsetDuration(Duration value)Sets the value of the property duration.voidsetFromValue(Color value)Sets the value of the property fromValue.voidsetShape(Shape value)Sets the value of the property shape.voidsetToValue(Color value)Sets the value of the property toValue.ObjectProperty<Shape>shapeProperty()The target shape of thisFillTransition.ObjectProperty<Color>toValueProperty()Specifies the stop color value for thisFillTransition.Methods inherited from class javafx.animation.TransitiongetCachedInterpolator, getInterpolator, getParentTargetNode, interpolatorProperty, setInterpolatorMethods inherited from class javafx.animation.AnimationautoReverseProperty, currentRateProperty, currentTimeProperty, cycleCountProperty, cycleDurationProperty, delayProperty, getCuePoints, getCurrentRate, getCurrentTime, getCycleCount, getCycleDuration, getDelay, getOnFinished, getRate, getStatus, getTargetFramerate, getTotalDuration, isAutoReverse, jumpTo, jumpTo, onFinishedProperty, pause, play, playFrom, playFrom, playFromStart, rateProperty, setAutoReverse, setCycleCount, setCycleDuration, setDelay, setOnFinished, setRate, setStatus, statusProperty, stop, totalDurationProperty
- 
Property Details- 
shapeThe target shape of thisFillTransition.It is not possible to change the target shapeof a runningFillTransition. If the value ofshapeis changed for a runningFillTransition, the animation has to be stopped and started again to pick up the new value.- See Also:
- getShape(),- setShape(Shape)
 
- 
durationThe duration of thisFillTransition.It is not possible to change the durationof a runningFillTransition. If the value ofdurationis changed for a runningFillTransition, the animation has to be stopped and started again to pick up the new value.Note: While the unit of durationis a millisecond, the granularity depends on the underlying operating system and will in general be larger. For example animations on desktop systems usually run with a maximum of 60fps which gives a granularity of ~17 ms. Setting duration to value lower thanDuration.ZEROwill result inIllegalArgumentException.- Default value:
- 400ms
- See Also:
- getDuration(),- setDuration(Duration)
 
- 
fromValueSpecifies the start color value for thisFillTransition.It is not possible to change fromValueof a runningFillTransition. If the value offromValueis changed for a runningFillTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- null
- See Also:
- getFromValue(),- setFromValue(Color)
 
- 
toValueSpecifies the stop color value for thisFillTransition.It is not possible to change toValueof a runningFillTransition. If the value oftoValueis changed for a runningFillTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- null
- See Also:
- getToValue(),- setToValue(Color)
 
 
- 
- 
Constructor Details- 
FillTransitionThe constructor ofFillTransition- Parameters:
- duration- The duration of the- FillTransition
- shape- The- shapewhich filling will be animated
- fromValue- The start value of the color-animation
- toValue- The end value of the color-animation
 
- 
FillTransitionThe constructor ofFillTransition- Parameters:
- duration- The duration of the- FillTransition
- fromValue- The start value of the color-animation
- toValue- The end value of the color-animation
 
- 
FillTransitionThe constructor ofFillTransition- Parameters:
- duration- The duration of the- FillTransition
- shape- The- shapewhich filling will be animated
 
- 
FillTransitionThe constructor ofFillTransition- Parameters:
- duration- The duration of the- FadeTransition
 
- 
FillTransitionpublic FillTransition()The constructor ofFillTransition
 
- 
- 
Method Details- 
setShapeSets the value of the property shape.- Property description:
- The target shape of this FillTransition.It is not possible to change the target shapeof a runningFillTransition. If the value ofshapeis changed for a runningFillTransition, the animation has to be stopped and started again to pick up the new value.
 
- 
getShapeGets the value of the property shape.- Property description:
- The target shape of this FillTransition.It is not possible to change the target shapeof a runningFillTransition. If the value ofshapeis changed for a runningFillTransition, the animation has to be stopped and started again to pick up the new value.
 
- 
shapePropertyThe target shape of thisFillTransition.It is not possible to change the target shapeof a runningFillTransition. If the value ofshapeis changed for a runningFillTransition, the animation has to be stopped and started again to pick up the new value.- See Also:
- getShape(),- setShape(Shape)
 
- 
setDurationSets the value of the property duration.- Property description:
- The duration of this FillTransition.It is not possible to change the durationof a runningFillTransition. If the value ofdurationis changed for a runningFillTransition, the animation has to be stopped and started again to pick up the new value.Note: While the unit of durationis a millisecond, the granularity depends on the underlying operating system and will in general be larger. For example animations on desktop systems usually run with a maximum of 60fps which gives a granularity of ~17 ms. Setting duration to value lower thanDuration.ZEROwill result inIllegalArgumentException.
- Default value:
- 400ms
 
- 
getDurationGets the value of the property duration.- Property description:
- The duration of this FillTransition.It is not possible to change the durationof a runningFillTransition. If the value ofdurationis changed for a runningFillTransition, the animation has to be stopped and started again to pick up the new value.Note: While the unit of durationis a millisecond, the granularity depends on the underlying operating system and will in general be larger. For example animations on desktop systems usually run with a maximum of 60fps which gives a granularity of ~17 ms. Setting duration to value lower thanDuration.ZEROwill result inIllegalArgumentException.
- Default value:
- 400ms
 
- 
durationPropertyThe duration of thisFillTransition.It is not possible to change the durationof a runningFillTransition. If the value ofdurationis changed for a runningFillTransition, the animation has to be stopped and started again to pick up the new value.Note: While the unit of durationis a millisecond, the granularity depends on the underlying operating system and will in general be larger. For example animations on desktop systems usually run with a maximum of 60fps which gives a granularity of ~17 ms. Setting duration to value lower thanDuration.ZEROwill result inIllegalArgumentException.- Default value:
- 400ms
- See Also:
- getDuration(),- setDuration(Duration)
 
- 
setFromValueSets the value of the property fromValue.- Property description:
- Specifies the start color value for this FillTransition.It is not possible to change fromValueof a runningFillTransition. If the value offromValueis changed for a runningFillTransition, the animation has to be stopped and started again to pick up the new value.
- Default value:
- null
 
- 
getFromValueGets the value of the property fromValue.- Property description:
- Specifies the start color value for this FillTransition.It is not possible to change fromValueof a runningFillTransition. If the value offromValueis changed for a runningFillTransition, the animation has to be stopped and started again to pick up the new value.
- Default value:
- null
 
- 
fromValuePropertySpecifies the start color value for thisFillTransition.It is not possible to change fromValueof a runningFillTransition. If the value offromValueis changed for a runningFillTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- null
- See Also:
- getFromValue(),- setFromValue(Color)
 
- 
setToValueSets the value of the property toValue.- Property description:
- Specifies the stop color value for this FillTransition.It is not possible to change toValueof a runningFillTransition. If the value oftoValueis changed for a runningFillTransition, the animation has to be stopped and started again to pick up the new value.
- Default value:
- null
 
- 
getToValueGets the value of the property toValue.- Property description:
- Specifies the stop color value for this FillTransition.It is not possible to change toValueof a runningFillTransition. If the value oftoValueis changed for a runningFillTransition, the animation has to be stopped and started again to pick up the new value.
- Default value:
- null
 
- 
toValuePropertySpecifies the stop color value for thisFillTransition.It is not possible to change toValueof a runningFillTransition. If the value oftoValueis changed for a runningFillTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- null
- See Also:
- getToValue(),- setToValue(Color)
 
- 
interpolateprotected void interpolate(double frac)The methodinterpolate()has to be provided by implementations ofTransition. While aTransitionis running, this method is called in every frame. The parameter defines the current position with the animation. At the start, the fraction will be0.0and at the end it will be1.0. How the parameter increases, depends on theinterpolator, e.g. if theinterpolatorisInterpolator.LINEAR, the fraction will increase linear. This method must not be called by the user directly.- Specified by:
- interpolatein class- Transition
- Parameters:
- frac- The relative position
 
 
-