- java.lang.Object
-
- javafx.animation.Animation
-
- javafx.animation.Transition
-
- javafx.animation.StrokeTransition
-
public final class StrokeTransition extends Transition
ThisTransition
creates an animation, that changes the stroke color of a shape over aduration
. This is done by updating thestroke
variable of theshape
at regular intervals.It starts from the
fromValue
if provided else uses theshape
'sstroke
value. (Thestroke
value has to be aColor
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); 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 Summary
Properties Type Property Description ObjectProperty<Duration>
duration
The duration of thisStrokeTransition
.ObjectProperty<Color>
fromValue
Specifies the start color value for thisStrokeTransition
.ObjectProperty<Shape>
shape
The target shape of thisStrokeTransition
.ObjectProperty<Color>
toValue
Specifies the stop color value for thisStrokeTransition
.-
Properties inherited from class javafx.animation.Transition
interpolator
-
Properties inherited from class javafx.animation.Animation
autoReverse, currentRate, currentTime, cycleCount, cycleDuration, delay, onFinished, rate, status, totalDuration
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class javafx.animation.Animation
Animation.Status
-
-
Field Summary
-
Fields inherited from class javafx.animation.Animation
INDEFINITE
-
-
Constructor Summary
Constructors Constructor Description StrokeTransition()
The constructor ofStrokeTransition
StrokeTransition(Duration duration)
The constructor ofStrokeTransition
StrokeTransition(Duration duration, Color fromValue, Color toValue)
The constructor ofStrokeTransition
StrokeTransition(Duration duration, Shape shape)
The constructor ofStrokeTransition
StrokeTransition(Duration duration, Shape shape, Color fromValue, Color toValue)
The constructor ofStrokeTransition
-
Method Summary
Modifier and Type Method Description ObjectProperty<Duration>
durationProperty()
The duration of thisStrokeTransition
.ObjectProperty<Color>
fromValueProperty()
Specifies the start color value for thisStrokeTransition
.Duration
getDuration()
Gets the value of the property duration.Color
getFromValue()
Gets the value of the property fromValue.Shape
getShape()
Gets the value of the property shape.Color
getToValue()
Gets the value of the property toValue.protected void
interpolate(double frac)
The methodinterpolate()
has to be provided by implementations ofTransition
.void
setDuration(Duration value)
Sets the value of the property duration.void
setFromValue(Color value)
Sets the value of the property fromValue.void
setShape(Shape value)
Sets the value of the property shape.void
setToValue(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.Transition
getCachedInterpolator, getInterpolator, getParentTargetNode, interpolatorProperty, setInterpolator
-
Methods inherited from class javafx.animation.Animation
autoReverseProperty, 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 Detail
-
shape
public final ObjectProperty<Shape> shapeProperty
The target shape of thisStrokeTransition
.It is not possible to change the target
shape
of a runningStrokeTransition
. If the value ofshape
is changed for a runningStrokeTransition
, the animation has to be stopped and started again to pick up the new value.- See Also:
getShape()
,setShape(Shape)
-
duration
public final ObjectProperty<Duration> durationProperty
The duration of thisStrokeTransition
.It is not possible to change the
duration
of a runningStrokeTransition
. If the value ofduration
is changed for a runningStrokeTransition
, the animation has to be stopped and started again to pick up the new value.Note: While the unit of
duration
is 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.ZERO
will result inIllegalArgumentException
.- Default value:
- 400ms
- See Also:
getDuration()
,setDuration(Duration)
-
fromValue
public final ObjectProperty<Color> fromValueProperty
Specifies the start color value for thisStrokeTransition
.It is not possible to change
fromValue
of a runningStrokeTransition
. If the value offromValue
is 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)
-
toValue
public final ObjectProperty<Color> toValueProperty
Specifies the stop color value for thisStrokeTransition
.It is not possible to change
toValue
of a runningStrokeTransition
. If the value oftoValue
is 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
-
StrokeTransition
public StrokeTransition(Duration duration, Shape shape, Color fromValue, Color toValue)
The constructor ofStrokeTransition
- Parameters:
duration
- The duration of theStrokeTransition
shape
- Theshape
which filling will be animatedfromValue
- The start value of the color-animationtoValue
- The end value of the color-animation
-
StrokeTransition
public StrokeTransition(Duration duration, Color fromValue, Color toValue)
The constructor ofStrokeTransition
- Parameters:
duration
- The duration of theStrokeTransition
fromValue
- The start value of the color-animationtoValue
- The end value of the color-animation
-
StrokeTransition
public StrokeTransition(Duration duration, Shape shape)
The constructor ofStrokeTransition
- Parameters:
duration
- The duration of theStrokeTransition
shape
- Theshape
which stroke paint will be animated
-
StrokeTransition
public StrokeTransition(Duration duration)
The constructor ofStrokeTransition
- Parameters:
duration
- The duration of theStrokeTransition
-
StrokeTransition
public StrokeTransition()
The constructor ofStrokeTransition
-
-
Method Detail
-
setShape
public 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
shape
of a runningStrokeTransition
. If the value ofshape
is changed for a runningStrokeTransition
, the animation has to be stopped and started again to pick up the new value.
-
getShape
public 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
shape
of a runningStrokeTransition
. If the value ofshape
is changed for a runningStrokeTransition
, the animation has to be stopped and started again to pick up the new value.
-
shapeProperty
public final ObjectProperty<Shape> shapeProperty()
The target shape of thisStrokeTransition
.It is not possible to change the target
shape
of a runningStrokeTransition
. If the value ofshape
is changed for a runningStrokeTransition
, the animation has to be stopped and started again to pick up the new value.- See Also:
getShape()
,setShape(Shape)
-
setDuration
public 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
duration
of a runningStrokeTransition
. If the value ofduration
is changed for a runningStrokeTransition
, the animation has to be stopped and started again to pick up the new value.Note: While the unit of
duration
is 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.ZERO
will result inIllegalArgumentException
. - Default value:
- 400ms
-
getDuration
public final Duration getDuration()
Gets the value of the property duration.- Property description:
- The duration of this
StrokeTransition
.It is not possible to change the
duration
of a runningStrokeTransition
. If the value ofduration
is changed for a runningStrokeTransition
, the animation has to be stopped and started again to pick up the new value.Note: While the unit of
duration
is 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.ZERO
will result inIllegalArgumentException
. - Default value:
- 400ms
-
durationProperty
public final ObjectProperty<Duration> durationProperty()
The duration of thisStrokeTransition
.It is not possible to change the
duration
of a runningStrokeTransition
. If the value ofduration
is changed for a runningStrokeTransition
, the animation has to be stopped and started again to pick up the new value.Note: While the unit of
duration
is 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.ZERO
will result inIllegalArgumentException
.- Default value:
- 400ms
- See Also:
getDuration()
,setDuration(Duration)
-
setFromValue
public 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
fromValue
of a runningStrokeTransition
. If the value offromValue
is changed for a runningStrokeTransition
, the animation has to be stopped and started again to pick up the new value. - Default value:
null
-
getFromValue
public 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
fromValue
of a runningStrokeTransition
. If the value offromValue
is changed for a runningStrokeTransition
, the animation has to be stopped and started again to pick up the new value. - Default value:
null
-
fromValueProperty
public final ObjectProperty<Color> fromValueProperty()
Specifies the start color value for thisStrokeTransition
.It is not possible to change
fromValue
of a runningStrokeTransition
. If the value offromValue
is 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)
-
setToValue
public 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
toValue
of a runningStrokeTransition
. If the value oftoValue
is changed for a runningStrokeTransition
, the animation has to be stopped and started again to pick up the new value. - Default value:
null
-
getToValue
public 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
toValue
of a runningStrokeTransition
. If the value oftoValue
is changed for a runningStrokeTransition
, the animation has to be stopped and started again to pick up the new value. - Default value:
null
-
toValueProperty
public final ObjectProperty<Color> toValueProperty()
Specifies the stop color value for thisStrokeTransition
.It is not possible to change
toValue
of a runningStrokeTransition
. If the value oftoValue
is 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)
-
interpolate
protected void interpolate(double frac)
The methodinterpolate()
has to be provided by implementations ofTransition
. While aTransition
is running, this method is called in every frame. The parameter defines the current position with the animation. At the start, the fraction will be0.0
and at the end it will be1.0
. How the parameter increases, depends on theinterpolator
, e.g. if theinterpolator
isInterpolator.LINEAR
, the fraction will increase linear. This method must not be called by the user directly.- Specified by:
interpolate
in classTransition
- Parameters:
frac
- The relative position
-
-