com.sun.javafx.api.tree
Interface SequenceSliceTree

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

public interface SequenceSliceTree
extends JavaFXExpressionTree

Common interface for statement nodes in an abstract syntax tree for the JavaFX Script language.

WARNING: This interface and its sub-interfaces are subject to change as the JavaFX Script programming language evolves. These interfaces are implemented by Sun's JavaFX Script compiler (javafxc) and should not be implemented either directly or indirectly by other applications.


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
 
Field Summary
static int END_EXCLUSIVE
           
static int END_INCLUSIVE
           
 
Method Summary
 int getEndKind()
          Return the end-point kind: inclusive, exclusive, ...
 com.sun.source.tree.ExpressionTree getFirstIndex()
          An expression for the start of the slice.
 com.sun.source.tree.ExpressionTree getLastIndex()
          An expression for the end of the slice.
 com.sun.source.tree.ExpressionTree getSequence()
           
 
Methods inherited from interface com.sun.javafx.api.tree.JavaFXExpressionTree
accept, getJavaFXKind, getKind
 
Methods inherited from interface com.sun.source.tree.Tree
accept
 

Field Detail

END_INCLUSIVE

static final int END_INCLUSIVE
See Also:
Constant Field Values

END_EXCLUSIVE

static final int END_EXCLUSIVE
See Also:
Constant Field Values
Method Detail

getSequence

com.sun.source.tree.ExpressionTree getSequence()

getFirstIndex

com.sun.source.tree.ExpressionTree getFirstIndex()
An expression for the start of the slice.


getLastIndex

com.sun.source.tree.ExpressionTree getLastIndex()
An expression for the end of the slice.


getEndKind

int getEndKind()
Return the end-point kind: inclusive, exclusive, ... Should return an enum, once we actually implement more than END_EXCLUSIVE.