com.sun.javafx.api.tree
Interface InstantiateTree

All Superinterfaces:
ExpressionTree, Tree

public interface InstantiateTree
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<ExpressionTree> getArguments()
           
 ClassDeclarationTree getClassBody()
           
 ExpressionTree getIdentifier()
           
 java.util.List<ObjectLiteralPartTree> getLiteralParts()
           
 java.util.List<VariableTree> getLocalVariables()
           
 
Methods inherited from interface com.sun.javafx.api.tree.Tree
accept, getJavaFXKind, isMissing
 

Method Detail

getIdentifier

ExpressionTree getIdentifier()

getArguments

java.util.List<ExpressionTree> getArguments()

getLiteralParts

java.util.List<ObjectLiteralPartTree> getLiteralParts()

getClassBody

ClassDeclarationTree getClassBody()

getLocalVariables

java.util.List<VariableTree> getLocalVariables()