Web Site

org.codehaus.janino
Interface Java.BlockStatement

All Superinterfaces:
Java.Locatable, Java.Scope
All Known Implementing Classes:
Java.ConstructorInvocation, Java.Initializer, Java.Statement
Enclosing interface:
Java

public static interface Java.BlockStatement
extends Java.Locatable, Java.Scope

Base of all statements that can appear in a block.


Method Summary
 void accept(Visitor.BlockStatementVisitor visitor)
           
 Java.Scope getEnclosingScope()
           
 void setEnclosingScope(Java.Scope enclosingScope)
           
 
Methods inherited from interface org.codehaus.janino.Java.Locatable
getLocation, throwParseException
 

Method Detail

setEnclosingScope

public void setEnclosingScope(Java.Scope enclosingScope)

getEnclosingScope

public Java.Scope getEnclosingScope()
Specified by:
getEnclosingScope in interface Java.Scope

accept

public void accept(Visitor.BlockStatementVisitor visitor)

Web Site