com.sun.javafx.api.tree
Interface BlockExpressionTree

All Superinterfaces:
ExpressionTree, Tree

public interface BlockExpressionTree
extends ExpressionTree

Common interface for expression 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
 
Method Summary
 java.util.List<? extends ExpressionTree> getStatements()
           
 ExpressionTree getValue()
           
 boolean isStatic()
           
 
Methods inherited from interface com.sun.javafx.api.tree.Tree
accept, getJavaFXKind, isMissing
 

Method Detail

isStatic

boolean isStatic()

getStatements

java.util.List<? extends ExpressionTree> getStatements()

getValue

ExpressionTree getValue()