Uses of Class
org.eclipse.jdt.core.dom.Block
-
Packages that use Block Package Description org.eclipse.jdt.core.dom The Java DOM/AST is the set of classes that model the source code of a Java program as a structured document. -
-
Uses of Block in org.eclipse.jdt.core.dom
Methods in org.eclipse.jdt.core.dom that return Block Modifier and Type Method Description BlockCatchClause. getBody()Returns the body of this catch clause.BlockInitializer. getBody()Returns the body of this initializer declaration.BlockMethodDeclaration. getBody()Returns the body of this method declaration, ornullif this method has no body.BlockSynchronizedStatement. getBody()Returns the body of this synchronized statement.BlockTryStatement. getBody()Returns the body of this try statement.BlockTryStatement. getFinally()Returns the finally block of this try statement, ornullif this try statement has no finally block.BlockAST. 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 Modifier and Type Method Description voidASTVisitor. endVisit(Block node)End of visit the given type-specific AST node.booleanASTMatcher. match(Block node, Object other)Returns whether the given node and the other object match.voidCatchClause. setBody(Block body)Sets the body of this catch clause.voidInitializer. setBody(Block body)Sets the body of this initializer declaration.voidMethodDeclaration. setBody(Block body)Sets or clears the body of this method declaration.voidSynchronizedStatement. setBody(Block block)Sets the body of this synchronized statement.voidTryStatement. setBody(Block body)Sets the body of this try statement.voidTryStatement. setFinally(Block block)Sets or clears the finally block of this try statement.booleanASTVisitor. visit(Block node)Visits the given type-specific AST node.
-