com.sun.javafx.api.tree
Interface InterpolateValueTree

All Superinterfaces:
ExpressionTree, Tree

public interface InterpolateValueTree
extends ExpressionTree

A tree node for a JavaFX interpolate value description, such as "500 tween LINEAR", where the interpolate type is LINEAR while 500 is the value to interpolate over.


Nested Class Summary
 
Nested classes/interfaces inherited from interface com.sun.javafx.api.tree.Tree
Tree.JavaFXKind
 
Method Summary
 ExpressionTree getAttribute()
          Returns the target attribute to which this value applies.
 ExpressionTree getInterpolation()
          The interpolation to be run, such as LINEAR or EASEIN.
 ExpressionTree getValue()
          Returns the value for the interpolation.
 
Methods inherited from interface com.sun.javafx.api.tree.Tree
accept, getJavaFXKind, isMissing
 

Method Detail

getAttribute

ExpressionTree getAttribute()
Returns the target attribute to which this value applies.

Returns:
the target, or null if this value is declared outside of an interpolate block expression.

getInterpolation

ExpressionTree getInterpolation()
The interpolation to be run, such as LINEAR or EASEIN.

Returns:
the interpolation name

getValue

ExpressionTree getValue()
Returns the value for the interpolation.

Returns:
the value for the interpolation.