- java.lang.Object
- 
- javafx.animation.Animation
- 
- javafx.animation.Transition
- 
- javafx.animation.StrokeTransition
 
 
 
- 
 
 public final class StrokeTransition extends Transition ThisTransitioncreates an animation, that changes the stroke color of a shape over aduration. This is done by updating thestrokevariable of theshapeat regular intervals.It starts from the fromValueif provided else uses theshape'sstrokevalue. (Thestrokevalue has to be aColorin this case).It stops at the toValuevalue.Code Segment Example: import javafx.scene.shape.*; import javafx.animation.*; ... Rectangle rect = new Rectangle (100, 40, 100, 100); rect.setArcHeight(50); rect.setArcWidth(50); rect.setFill(null); StrokeTransition st = new StrokeTransition(Duration.millis(3000), rect, Color.RED, Color.BLUE); st.setCycleCount(4); st.setAutoReverse(true); st.play(); ...- Since:
- JavaFX 2.0
- See Also:
- Transition,- Animation
 
- 
- 
Property SummaryProperties Type Property Description ObjectProperty<Duration>durationThe duration of thisStrokeTransition.ObjectProperty<Color>fromValueSpecifies the start color value for thisStrokeTransition.ObjectProperty<Shape>shapeThe target shape of thisStrokeTransition.ObjectProperty<Color>toValueSpecifies the stop color value for thisStrokeTransition.- 
Properties inherited from class javafx.animation.AnimationautoReverse, currentRate, currentTime, cycleCount, cycleDuration, delay, onFinished, rate, status, totalDuration
 - 
Properties inherited from class javafx.animation.Transitioninterpolator
 
- 
 - 
Nested Class Summary- 
Nested classes/interfaces inherited from class javafx.animation.AnimationAnimation.Status
 
- 
 - 
Field Summary- 
Fields inherited from class javafx.animation.AnimationINDEFINITE
 
- 
 - 
Constructor SummaryConstructors Constructor Description StrokeTransition()The constructor ofStrokeTransitionStrokeTransition(Duration duration)The constructor ofStrokeTransitionStrokeTransition(Duration duration, Color fromValue, Color toValue)The constructor ofStrokeTransitionStrokeTransition(Duration duration, Shape shape)The constructor ofStrokeTransitionStrokeTransition(Duration duration, Shape shape, Color fromValue, Color toValue)The constructor ofStrokeTransition
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectProperty<Duration>durationProperty()The duration of thisStrokeTransition.ObjectProperty<Color>fromValueProperty()Specifies the start color value for thisStrokeTransition.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 thisStrokeTransition.ObjectProperty<Color>toValueProperty()Specifies the stop color value for thisStrokeTransition.- 
Methods 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
 - 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from class javafx.animation.TransitiongetCachedInterpolator, getInterpolator, getParentTargetNode, interpolatorProperty, setInterpolator
 
- 
 
- 
- 
- 
Property Detail- 
shapepublic final ObjectProperty<Shape> shapeProperty The target shape of thisStrokeTransition.It is not possible to change the target shapeof a runningStrokeTransition. If the value ofshapeis changed for a runningStrokeTransition, the animation has to be stopped and started again to pick up the new value.- See Also:
- getShape(),- setShape(Shape)
 
 - 
durationpublic final ObjectProperty<Duration> durationProperty The duration of thisStrokeTransition.It is not possible to change the durationof a runningStrokeTransition. If the value ofdurationis changed for a runningStrokeTransition, 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)
 
 - 
fromValuepublic final ObjectProperty<Color> fromValueProperty Specifies the start color value for thisStrokeTransition.It is not possible to change fromValueof a runningStrokeTransition. If the value offromValueis changed for a runningStrokeTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- null
- See Also:
- getFromValue(),- setFromValue(Color)
 
 - 
toValuepublic final ObjectProperty<Color> toValueProperty Specifies the stop color value for thisStrokeTransition.It is not possible to change toValueof a runningStrokeTransition. If the value oftoValueis changed for a runningStrokeTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- null
- See Also:
- getToValue(),- setToValue(Color)
 
 
- 
 - 
Constructor Detail- 
StrokeTransitionpublic StrokeTransition(Duration duration, Shape shape, Color fromValue, Color toValue) The constructor ofStrokeTransition- Parameters:
- duration- The duration of the- StrokeTransition
- shape- The- shapewhich filling will be animated
- fromValue- The start value of the color-animation
- toValue- The end value of the color-animation
 
 - 
StrokeTransitionpublic StrokeTransition(Duration duration, Color fromValue, Color toValue) The constructor ofStrokeTransition- Parameters:
- duration- The duration of the- StrokeTransition
- fromValue- The start value of the color-animation
- toValue- The end value of the color-animation
 
 - 
StrokeTransitionpublic StrokeTransition(Duration duration, Shape shape) The constructor ofStrokeTransition- Parameters:
- duration- The duration of the- StrokeTransition
- shape- The- shapewhich stroke paint will be animated
 
 - 
StrokeTransitionpublic StrokeTransition(Duration duration) The constructor ofStrokeTransition- Parameters:
- duration- The duration of the- StrokeTransition
 
 - 
StrokeTransitionpublic StrokeTransition() The constructor ofStrokeTransition
 
- 
 - 
Method Detail- 
setShapepublic final void setShape(Shape value) Sets the value of the property shape.- Property description:
- The target shape of this StrokeTransition.It is not possible to change the target shapeof a runningStrokeTransition. If the value ofshapeis changed for a runningStrokeTransition, the animation has to be stopped and started again to pick up the new value.
 
 - 
getShapepublic final Shape getShape() Gets the value of the property shape.- Property description:
- The target shape of this StrokeTransition.It is not possible to change the target shapeof a runningStrokeTransition. If the value ofshapeis changed for a runningStrokeTransition, the animation has to be stopped and started again to pick up the new value.
 
 - 
shapePropertypublic final ObjectProperty<Shape> shapeProperty() The target shape of thisStrokeTransition.It is not possible to change the target shapeof a runningStrokeTransition. If the value ofshapeis changed for a runningStrokeTransition, the animation has to be stopped and started again to pick up the new value.- See Also:
- getShape(),- setShape(Shape)
 
 - 
setDurationpublic final void setDuration(Duration value) Sets the value of the property duration.- Property description:
- The duration of this StrokeTransition.It is not possible to change the durationof a runningStrokeTransition. If the value ofdurationis changed for a runningStrokeTransition, 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
 
 - 
getDurationpublic final Duration getDuration() Gets the value of the property duration.- Property description:
- The duration of this StrokeTransition.It is not possible to change the durationof a runningStrokeTransition. If the value ofdurationis changed for a runningStrokeTransition, 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
 
 - 
durationPropertypublic final ObjectProperty<Duration> durationProperty() The duration of thisStrokeTransition.It is not possible to change the durationof a runningStrokeTransition. If the value ofdurationis changed for a runningStrokeTransition, 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)
 
 - 
setFromValuepublic final void setFromValue(Color value) Sets the value of the property fromValue.- Property description:
- Specifies the start color value for this StrokeTransition.It is not possible to change fromValueof a runningStrokeTransition. If the value offromValueis changed for a runningStrokeTransition, the animation has to be stopped and started again to pick up the new value.
- Default value:
- null
 
 - 
getFromValuepublic final Color getFromValue() Gets the value of the property fromValue.- Property description:
- Specifies the start color value for this StrokeTransition.It is not possible to change fromValueof a runningStrokeTransition. If the value offromValueis changed for a runningStrokeTransition, the animation has to be stopped and started again to pick up the new value.
- Default value:
- null
 
 - 
fromValuePropertypublic final ObjectProperty<Color> fromValueProperty() Specifies the start color value for thisStrokeTransition.It is not possible to change fromValueof a runningStrokeTransition. If the value offromValueis changed for a runningStrokeTransition, the animation has to be stopped and started again to pick up the new value.- Default value:
- null
- See Also:
- getFromValue(),- setFromValue(Color)
 
 - 
setToValuepublic final void setToValue(Color value) Sets the value of the property toValue.- Property description:
- Specifies the stop color value for this StrokeTransition.It is not possible to change toValueof a runningStrokeTransition. If the value oftoValueis changed for a runningStrokeTransition, the animation has to be stopped and started again to pick up the new value.
- Default value:
- null
 
 - 
getToValuepublic final Color getToValue() Gets the value of the property toValue.- Property description:
- Specifies the stop color value for this StrokeTransition.It is not possible to change toValueof a runningStrokeTransition. If the value oftoValueis changed for a runningStrokeTransition, the animation has to be stopped and started again to pick up the new value.
- Default value:
- null
 
 - 
toValuePropertypublic final ObjectProperty<Color> toValueProperty() Specifies the stop color value for thisStrokeTransition.It is not possible to change toValueof a runningStrokeTransition. If the value oftoValueis changed for a runningStrokeTransition, 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
 
 
- 
 
-