com.sun.javafx.api.tree
Interface SequenceSliceTree

All Superinterfaces:
ExpressionTree, Tree

public interface SequenceSliceTree
extends ExpressionTree

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

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

ExpressionTree getSequence()

getFirstIndex

ExpressionTree getFirstIndex()
An expression for the start of the slice.


getLastIndex

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.