Uses of Class
org.eclipse.wst.jsdt.core.dom.AST

Packages that use AST
org.eclipse.wst.jsdt.core.dom   
org.eclipse.wst.jsdt.core.dom.rewrite   
 

Uses of AST in org.eclipse.wst.jsdt.core.dom
 

Methods in org.eclipse.wst.jsdt.core.dom that return AST
 AST ASTNode.getAST()
          Returns this node's AST.
static AST AST.newAST(int level)
          Creates a new JavaScript abstract syntax tree (AST) following the specified set of API rules.
 

Methods in org.eclipse.wst.jsdt.core.dom with parameters of type AST
static ASTNode ASTNode.copySubtree(AST target, ASTNode node)
          Returns a deep copy of the subtree of AST nodes rooted at the given node.
static java.util.List ASTNode.copySubtrees(AST target, java.util.List nodes)
          Returns a deep copy of the subtrees of AST nodes rooted at the given list of nodes.
static PrimitiveType PrimitiveType.createAnyType(AST ast)
           
 

Uses of AST in org.eclipse.wst.jsdt.core.dom.rewrite
 

Methods in org.eclipse.wst.jsdt.core.dom.rewrite that return AST
 AST ASTRewrite.getAST()
          Returns the AST the rewrite was set up on.
 

Methods in org.eclipse.wst.jsdt.core.dom.rewrite with parameters of type AST
 Type ImportRewrite.addImport(ITypeBinding binding, AST ast)
          Adds a new import to the rewriter's record and returns a Type that can be used in the code.
 Type ImportRewrite.addImport(ITypeBinding binding, AST ast, ImportRewrite.ImportRewriteContext context)
          Adds a new import to the rewriter's record and returns a Type that can be used in the code.
 Type ImportRewrite.addImportFromSignature(java.lang.String typeSig, AST ast)
          Adds a new import to the rewriter's record and returns a Type node that can be used in the code as a reference to the type.
 Type ImportRewrite.addImportFromSignature(java.lang.String typeSig, AST ast, ImportRewrite.ImportRewriteContext context)
          Adds a new import to the rewriter's record and returns a Type node that can be used in the code as a reference to the type.
static ASTRewrite ASTRewrite.create(AST ast)
          Creates a new instance for describing manipulations of the given AST.