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.Rvalue
optionalQualification
The qualification for this 'qualified superclass constructor invocation', ornull
iff 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 optionalQualification, Java.Rvalue[] arguments)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(Visitor.AtomVisitor visitor)
void
accept(Visitor.BlockStatementVisitor visitor)
Invokes the 'visit...()
' method ofVisitor.BlockStatementVisitor
for the concreteJava.BlockStatement
type.String
toString()
-
Methods inherited from class org.codehaus.janino.Java.ConstructorInvocation
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
-
optionalQualification
public final Java.Rvalue optionalQualification
The qualification for this 'qualified superclass constructor invocation', ornull
iff this is an 'unqualified superclass constructor invocation'.
-
-
Constructor Detail
-
SuperConstructorInvocation
public SuperConstructorInvocation(Location location, Java.Rvalue optionalQualification, Java.Rvalue[] arguments)
-
-
Method Detail
-
accept
public void accept(Visitor.AtomVisitor visitor)
Description copied from class:Java.Atom
-
accept
public void accept(Visitor.BlockStatementVisitor visitor)
Description copied from interface:Java.BlockStatement
Invokes the 'visit...()
' method ofVisitor.BlockStatementVisitor
for the concreteJava.BlockStatement
type.
-
-