com.sun.javafx.api.tree
Interface InterpolateTree
- All Superinterfaces:
- JavaFXStatementTree, JavaFXTree, com.sun.source.tree.StatementTree, com.sun.source.tree.Tree
public interface InterpolateTree
- extends JavaFXStatementTree
A tree node for a JavaFX interpolate description, such as:
-
"
x => 500 tween LINEAR
", where x is the value to be changed
via interpolation, and the expression after the =>; or
rect => {height: 400 tween EASEBOTH, width: 500 tween LINEAR};
,
where rect is object to change, with interpolate values for its height and
width attributes.
Nested classes/interfaces inherited from interface com.sun.source.tree.Tree |
com.sun.source.tree.Tree.Kind |
Methods inherited from interface com.sun.source.tree.Tree |
accept |
getVariable
com.sun.source.tree.ExpressionTree getVariable()
- Returns the variable to be interpolated.
- Returns:
- the variable expression
getInterpolateValues
java.util.List<InterpolateValueTree> getInterpolateValues()
- Returns the list of interpolation values for this variable.
- Returns:
- the list of interpolation values