Package org.codehaus.janino
Class Java.Initializer
- java.lang.Object
-
- org.codehaus.janino.Java.Located
-
- org.codehaus.janino.Java.AbstractTypeBodyDeclaration
-
- org.codehaus.janino.Java.Initializer
-
- All Implemented Interfaces:
Java.BlockStatement,Java.FieldDeclarationOrInitializer,Java.Locatable,Java.Scope,Java.TypeBodyDeclaration
- Enclosing class:
- Java
public static final class Java.Initializer extends Java.AbstractTypeBodyDeclaration implements Java.FieldDeclarationOrInitializer
Representation of an "instance initializer" (JLS7 8.6) or "static initializer" (JLS7 8.7).
-
-
Field Summary
Fields Modifier and Type Field Description Java.BlockblockThe block that poses the initializer.-
Fields inherited from class org.codehaus.janino.Java.AbstractTypeBodyDeclaration
modifiers
-
Fields inherited from class org.codehaus.janino.Java.Located
NOWHERE
-
-
Constructor Summary
Constructors Constructor Description Initializer(Location location, Java.Modifier[] modifiers, Java.Block block)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R,EX extends java.lang.Throwable>
Raccept(Visitor.BlockStatementVisitor<R,EX> visitor)Invokes the "visit...()" method ofVisitor.BlockStatementVisitorfor the concreteJava.BlockStatementtype.<R,EX extends java.lang.Throwable>
Raccept(Visitor.FieldDeclarationOrInitializerVisitor<R,EX> visitor)<R,EX extends java.lang.Throwable>
Raccept(Visitor.TypeBodyDeclarationVisitor<R,EX> visitor)Invokes the "visit...()" method ofVisitor.TypeBodyDeclarationVisitorfor the concreteJava.TypeBodyDeclarationtype.Java.LocalVariablefindLocalVariable(java.lang.String name)booleanisStatic()java.lang.StringtoString()-
Methods inherited from class org.codehaus.janino.Java.AbstractTypeBodyDeclaration
getAnnotations, getDeclaringType, getEnclosingScope, getModifiers, setDeclaringType, 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.BlockStatement
getEnclosingScope, setEnclosingScope
-
Methods inherited from interface org.codehaus.janino.Java.Locatable
getLocation, throwCompileException
-
Methods inherited from interface org.codehaus.janino.Java.TypeBodyDeclaration
getDeclaringType, getModifiers, setDeclaringType
-
-
-
-
Field Detail
-
block
public final Java.Block block
The block that poses the initializer.
-
-
Constructor Detail
-
Initializer
public Initializer(Location location, Java.Modifier[] modifiers, Java.Block block)
-
-
Method Detail
-
isStatic
public boolean isStatic()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
accept
@Nullable public <R,EX extends java.lang.Throwable> R accept(Visitor.FieldDeclarationOrInitializerVisitor<R,EX> visitor) throws EX extends java.lang.Throwable
- Specified by:
acceptin interfaceJava.FieldDeclarationOrInitializer- Throws:
EX extends java.lang.Throwable
-
accept
@Nullable public <R,EX extends java.lang.Throwable> R accept(Visitor.TypeBodyDeclarationVisitor<R,EX> visitor) throws EX extends java.lang.Throwable
Description copied from interface:Java.TypeBodyDeclarationInvokes the "visit...()" method ofVisitor.TypeBodyDeclarationVisitorfor the concreteJava.TypeBodyDeclarationtype.- Specified by:
acceptin interfaceJava.TypeBodyDeclaration- Throws:
EX extends java.lang.Throwable
-
accept
@Nullable public <R,EX extends java.lang.Throwable> R accept(Visitor.BlockStatementVisitor<R,EX> visitor) throws EX extends java.lang.Throwable
Description copied from interface:Java.BlockStatementInvokes the "visit...()" method ofVisitor.BlockStatementVisitorfor the concreteJava.BlockStatementtype.- Specified by:
acceptin interfaceJava.BlockStatement- Throws:
EX extends java.lang.Throwable
-
findLocalVariable
@Nullable public Java.LocalVariable findLocalVariable(java.lang.String name)
- Specified by:
findLocalVariablein interfaceJava.BlockStatement- Returns:
- The local variable with the given name
-
-