java.lang.Object
io.github.palexdev.materialfx.beans.AnimationsData
Simple bean that has a node reference, a duration for the animation and
an action to perform when the animation ends.
-
Constructor Summary
ConstructorsConstructorDescriptionAnimationsData(Node node, Duration duration, EventHandler<ActionEvent> onFinished) -
Method Summary
Modifier and TypeMethodDescriptionduration()node()static AnimationsDataBuilds a new AnimationsData object with the given node and duration, the action is set to null.static AnimationsDataof(Node node, Duration duration, EventHandler<ActionEvent> onFinished) Builds a new AnimationsData object with the given node and duration and action.
-
Constructor Details
-
AnimationsData
-
-
Method Details
-
node
-
duration
-
onFinished
-
of
Builds a new AnimationsData object with the given node and duration, the action is set to null. -
of
Builds a new AnimationsData object with the given node and duration and action.
-