com.sun.javafx.api.tree
Interface KeyFrameLiteralTree

All Superinterfaces:
JavaFXTree, com.sun.source.tree.Tree

public interface KeyFrameLiteralTree
extends JavaFXTree

A tree node for a JavaFX Script keyframe literal.


Nested Class Summary
 
Nested classes/interfaces inherited from interface com.sun.javafx.api.tree.JavaFXTree
JavaFXTree.JavaFXKind
 
Nested classes/interfaces inherited from interface com.sun.source.tree.Tree
com.sun.source.tree.Tree.Kind
 
Method Summary
 java.util.List<InterpolateTree> getInterpolationExpression()
           
 TimeLiteralTree getStartDuration()
           
 BlockExpressionTree getTriggerExpression()
           
 
Methods inherited from interface com.sun.javafx.api.tree.JavaFXTree
accept, getJavaFXKind, getKind
 
Methods inherited from interface com.sun.source.tree.Tree
accept
 

Method Detail

getStartDuration

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

getInterpolationExpression

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

getTriggerExpression

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