|
Eclipse JDT 2.1 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Block | |
org.eclipse.jdt.core.dom | The Java DOM 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 | |
Block |
AST.newBlock()
Creates an unparented block node owned by this AST, for an empty list of statements. |
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 |
TryStatement.getFinally()
Returns the finally block of this try statement, or null if
this try statement has no finally block. |
Block |
Initializer.getBody()
Returns the body of this initializer declaration. |
Block |
SynchronizedStatement.getBody()
Returns the body of this synchronized statement. |
Block |
CatchClause.getBody()
Returns the body of this catch clause. |
Methods in org.eclipse.jdt.core.dom with parameters of type Block | |
boolean |
ASTMatcher.match(Block node,
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 |
TryStatement.setFinally(Block block)
Sets or clears the finally block of this try statement. |
void |
Initializer.setBody(Block body)
Sets the body of this initializer declaration. |
boolean |
ASTVisitor.visit(Block node)
|
void |
ASTVisitor.endVisit(Block node)
|
void |
SynchronizedStatement.setBody(Block block)
Sets the body of this synchronized statement. |
void |
CatchClause.setBody(Block body)
Sets the body of this catch clause. |
|
Eclipse JDT 2.1 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |