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

Packages that use Block
org.eclipse.wst.jsdt.core.dom   
 

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

Methods in org.eclipse.wst.jsdt.core.dom that return Block
 Block TryStatement.getBody()
          Returns the body of this try statement.
 Block Initializer.getBody()
          Returns the body of this initializer declaration.
 Block FunctionDeclaration.getBody()
          Returns the body of this method declaration, or null if this method has no body.
 Block CatchClause.getBody()
          Returns the body of this catch clause.
 Block TryStatement.getFinally()
          Returns the finally block of this try statement, or null if this try statement has no finally block.
 Block AST.newBlock()
          Creates an unparented block node owned by this AST, for an empty list of statements.
 

Methods in org.eclipse.wst.jsdt.core.dom with parameters of type Block
 void ASTVisitor.endVisit(Block node)
          End of visit the given type-specific AST node.
 boolean ASTMatcher.match(Block node, java.lang.Object other)
          Returns whether the given node and the other object match.
 void TryStatement.setBody(Block body)
          Sets the body of this try statement.
 void Initializer.setBody(Block body)
          Sets the body of this initializer declaration.
 void FunctionDeclaration.setBody(Block body)
          Sets or clears the body of this method declaration.
 void CatchClause.setBody(Block body)
          Sets the body of this catch clause.
 void TryStatement.setFinally(Block block)
          Sets or clears the finally block of this try statement.
 boolean ASTVisitor.visit(Block node)
          Visits the given type-specific AST node.