Uses of Class
org.eclipse.jdt.core.dom.Block

Packages that use Block
org.eclipse.jdt.core.dom   
org.eclipse.jdt.internal.core.dom   
org.eclipse.jdt.internal.core.dom.rewrite   
 

Uses of Block in org.eclipse.jdt.core.dom
 

Methods in org.eclipse.jdt.core.dom that return Block
 Block MethodDeclaration.getBody()
          Returns the body of this method declaration, or null if this method has no body.
 Block TryStatement.getBody()
          Returns the body of this try statement.
 Block CatchClause.getBody()
          Returns the body of this catch clause.
 Block SynchronizedStatement.getBody()
          Returns the body of this synchronized statement.
 Block Initializer.getBody()
          Returns the body of this initializer declaration.
 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.jdt.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 MethodDeclaration.setBody(Block body)
          Sets or clears the body of this method declaration.
 void TryStatement.setBody(Block body)
          Sets the body of this try statement.
 void CatchClause.setBody(Block body)
          Sets the body of this catch clause.
 void SynchronizedStatement.setBody(Block block)
          Sets the body of this synchronized statement.
 void Initializer.setBody(Block body)
          Sets the body of this initializer declaration.
 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.
 

Uses of Block in org.eclipse.jdt.internal.core.dom
 

Methods in org.eclipse.jdt.internal.core.dom with parameters of type Block
 boolean NaiveASTFlattener.visit(Block node)
           
 

Uses of Block in org.eclipse.jdt.internal.core.dom.rewrite
 

Methods in org.eclipse.jdt.internal.core.dom.rewrite that return Block
 Block NodeInfoStore.createCollapsePlaceholder()
           
 

Methods in org.eclipse.jdt.internal.core.dom.rewrite with parameters of type Block
 boolean ASTRewriteAnalyzer.visit(Block node)
           
 boolean ASTRewriteFlattener.visit(Block node)