Package org.codehaus.janino
Class Java.ArrayType
- java.lang.Object
-
- org.codehaus.janino.Java.Located
-
- org.codehaus.janino.Java.Atom
-
- org.codehaus.janino.Java.Type
-
- org.codehaus.janino.Java.ArrayType
-
- All Implemented Interfaces:
Java.Locatable,Java.TypeArgument
- Enclosing class:
- Java
public static final class Java.ArrayType extends Java.Type implements Java.TypeArgument
Representation of a JLS7 10.1 'array type'.
-
-
Field Summary
Fields Modifier and Type Field Description Java.TypecomponentTypeThe (declared) type of the array's components.-
Fields inherited from class org.codehaus.janino.Java.Located
NOWHERE
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(Visitor.AtomVisitor visitor)voidaccept(Visitor.TypeArgumentVisitor visitor)Invokes the 'visit...()' method ofVisitor.TypeArgumentVisitorfor the concreteJava.TypeArgumenttype.voidaccept(Visitor.TypeVisitor visitor)voidsetEnclosingScope(Java.Scope enclosingScope)Sets the enclosing scope for this object and all subordinateJava.Typeobjects.StringtoString()-
Methods inherited from class org.codehaus.janino.Java.Type
getEnclosingScope, toType
-
Methods inherited from class org.codehaus.janino.Java.Atom
toLvalue, toLvalueOrCompileException, toRvalue, toRvalueOrCompileException, toTypeOrCompileException
-
Methods inherited from class org.codehaus.janino.Java.Located
getLocation, throwCompileException
-
-
-
-
Field Detail
-
componentType
public final Java.Type componentType
The (declared) type of the array's components.
-
-
Constructor Detail
-
ArrayType
public ArrayType(Java.Type componentType)
-
-
Method Detail
-
setEnclosingScope
public void setEnclosingScope(Java.Scope enclosingScope)
Description copied from class:Java.TypeSets the enclosing scope for this object and all subordinateJava.Typeobjects.- Overrides:
setEnclosingScopein classJava.Type
-
accept
public void accept(Visitor.AtomVisitor visitor)
Description copied from class:Java.Atom
-
accept
public void accept(Visitor.TypeVisitor visitor)
Description copied from class:Java.Type
-
accept
public void accept(Visitor.TypeArgumentVisitor visitor)
Description copied from interface:Java.TypeArgumentInvokes the 'visit...()' method ofVisitor.TypeArgumentVisitorfor the concreteJava.TypeArgumenttype.- Specified by:
acceptin interfaceJava.TypeArgument
-
-