janino.net

org.codehaus.janino
Class Java.Block

java.lang.Object
  extended by org.codehaus.janino.Java.Located
      extended by org.codehaus.janino.Java.Statement
          extended by 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.


Field Summary
 List<Java.BlockStatement> statements
          The list of statements that comprise the body of the block.
 
Fields inherited from class org.codehaus.janino.Java.Statement
localVariables
 
Fields inherited from class org.codehaus.janino.Java.Located
NOWHERE
 
Constructor Summary
Java.Block(Location location)
           
 
Method Summary
 void accept(Visitor.BlockStatementVisitor visitor)
          Invokes the 'visit...()' method of Visitor.BlockStatementVisitor for the concrete Java.BlockStatement type.
 void addStatement(Java.BlockStatement statement)
          Adds one statement to the end of the block.
 void addStatements(List<Java.BlockStatement> statements)
          Adds a list of statements to the end of the block.
 Java.BlockStatement[] getStatements()
           
 String toString()
           
 
Methods inherited from class org.codehaus.janino.Java.Statement
findLocalVariable, getEnclosingScope, setEnclosingScope
 
Methods inherited from class org.codehaus.janino.Java.Located
getLocation, throwCompileException
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface org.codehaus.janino.Java.Locatable
getLocation, throwCompileException
 

Field Detail

statements

public final List<Java.BlockStatement> statements
The list of statements that comprise the body of the block.

Constructor Detail

Java.Block

public Java.Block(Location location)
Method Detail

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

janino.net