Package org.codehaus.janino
Class Java.SuperConstructorInvocation
- java.lang.Object
-
- org.codehaus.janino.Java.Located
-
- org.codehaus.janino.Java.Atom
-
- org.codehaus.janino.Java.ConstructorInvocation
-
- org.codehaus.janino.Java.SuperConstructorInvocation
-
- All Implemented Interfaces:
Java.BlockStatement,Java.Locatable,Java.Scope
- Enclosing class:
- Java
public static final class Java.SuperConstructorInvocation extends Java.ConstructorInvocation
Representation of a JLS7 8.8.7.1. "superclass constructor invocation".
-
-
Field Summary
Fields Modifier and Type Field Description Java.RvaluequalificationThe qualification for this "qualified superclass constructor invocation", ornulliff this is an "unqualified superclass constructor invocation".-
Fields inherited from class org.codehaus.janino.Java.ConstructorInvocation
arguments, localVariables
-
Fields inherited from class org.codehaus.janino.Java.Located
NOWHERE
-
-
Constructor Summary
Constructors Constructor Description SuperConstructorInvocation(Location location, Java.Rvalue qualification, Java.Rvalue[] arguments)
-
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.ConstructorInvocationVisitor<R,EX> visitor)Invokes the "visit...()" method ofVisitor.ConstructorInvocationVisitorfor the concreteJava.ConstructorInvocation.java.lang.StringtoString()-
Methods inherited from class org.codehaus.janino.Java.ConstructorInvocation
accept, findLocalVariable, getEnclosingScope, setEnclosingScope
-
Methods inherited from class org.codehaus.janino.Java.Atom
toLvalue, toLvalueOrCompileException, toRvalue, toRvalueOrCompileException, toType, toTypeOrCompileException
-
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
-
qualification
@Nullable public final Java.Rvalue qualification
The qualification for this "qualified superclass constructor invocation", ornulliff this is an "unqualified superclass constructor invocation".
-
-
Constructor Detail
-
SuperConstructorInvocation
public SuperConstructorInvocation(Location location, @Nullable Java.Rvalue qualification, Java.Rvalue[] arguments)
-
-
Method Detail
-
accept
@Nullable public <R,EX extends java.lang.Throwable> R accept(Visitor.ConstructorInvocationVisitor<R,EX> visitor) throws EX extends java.lang.Throwable
Description copied from class:Java.ConstructorInvocationInvokes the "visit...()" method ofVisitor.ConstructorInvocationVisitorfor the concreteJava.ConstructorInvocation.- Specified by:
acceptin classJava.ConstructorInvocation- 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.- Throws:
EX extends java.lang.Throwable
-
-