org.codehaus.janino
Class Java.Block
java.lang.Object
org.codehaus.janino.Java.Located
org.codehaus.janino.Java.Statement
org.codehaus.janino.Java.Block
- All Implemented Interfaces:
- Java.BlockStatement, Java.Locatable, Java.Scope
- Enclosing class:
- Java
public static final class Java.Block
- extends Java.Statement
Representation of a Java™ "block" (JLS7 14.2).
The statements that the block defines are executed in sequence.
statements
public final List<Java.BlockStatement> statements
- The list of statements that comprise the body of the block.
Java.Block
public Java.Block(Location location)
addStatement
public void addStatement(Java.BlockStatement statement)
- Adds one statement to the end of the block.
addStatements
public void addStatements(List<Java.BlockStatement> statements)
- Adds a list of statements to the end of the block.
getStatements
public Java.BlockStatement[] getStatements()
- Returns:
- A copy of the list of statements that comprise the body of the block
accept
public void accept(Visitor.BlockStatementVisitor visitor)
- Description copied from interface:
Java.BlockStatement
- Invokes the '
visit...()' method of Visitor.BlockStatementVisitor for the concrete
Java.BlockStatement type.
toString
public String toString()
- Overrides:
toString in class Object