com.sun.javafx.api.tree
Interface KeyFrameLiteralTree

All Superinterfaces:
ExpressionTree, Tree

public interface KeyFrameLiteralTree
extends ExpressionTree

A tree node for a JavaFX Script keyframe literal.


Nested Class Summary
 
Nested classes/interfaces inherited from interface com.sun.javafx.api.tree.Tree
Tree.JavaFXKind
 
Method Summary
 java.util.List<? extends ExpressionTree> getInterpolationValues()
           
 ExpressionTree getStartDuration()
           
 ExpressionTree getTrigger()
           
 
Methods inherited from interface com.sun.javafx.api.tree.Tree
accept, getJavaFXKind, isMissing
 

Method Detail

getStartDuration

ExpressionTree getStartDuration()
Returns:
the elapsed time to wait before start running the keyframe.

getInterpolationValues

java.util.List<? extends ExpressionTree> getInterpolationValues()
Returns:
the interpolation expression, which is the set of actions this keyframe makes during its execution.

getTrigger

ExpressionTree getTrigger()
Returns:
the expression to be executed when the keyframe finishes, or null if no trigger expression is specified.