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 classes/interfaces inherited from interface com.sun.javafx.api.tree.Tree |
Tree.JavaFXKind |
END_INCLUSIVE
static final int END_INCLUSIVE
- See Also:
- Constant Field Values
END_EXCLUSIVE
static final int END_EXCLUSIVE
- See Also:
- Constant Field Values
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.