janino.net

org.codehaus.janino
Class Java.Type

java.lang.Object
  extended by org.codehaus.janino.Java.Located
      extended by org.codehaus.janino.Java.Atom
          extended by org.codehaus.janino.Java.Type
All Implemented Interfaces:
Java.Locatable
Direct Known Subclasses:
Java.ArrayType, Java.BasicType, Java.ReferenceType, Java.RvalueMemberType, Java.SimpleType
Enclosing class:
Java

public abstract static class Java.Type
extends Java.Atom

Representation of a Java™ type.


Field Summary
 
Fields inherited from class org.codehaus.janino.Java.Located
NOWHERE
 
Constructor Summary
protected Java.Type(Location location)
           
 
Method Summary
abstract  void accept(Visitor.TypeVisitor visitor)
          Invokes the 'visit...()' method of Visitor.TypeVisitor for the concrete Java.Type type.
 Java.Scope getEnclosingScope()
           
 void setEnclosingScope(Java.Scope enclosingScope)
          Sets the enclosing scope for this object and all subordinate Java.Type objects.
 Java.Type toType()
           
 
Methods inherited from class org.codehaus.janino.Java.Atom
accept, toLvalue, toLvalueOrCompileException, toRvalue, toRvalueOrCompileException, toString, 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
 

Constructor Detail

Java.Type

protected Java.Type(Location location)
Method Detail

setEnclosingScope

public void setEnclosingScope(Java.Scope enclosingScope)
Sets the enclosing scope for this object and all subordinate Java.Type objects.


getEnclosingScope

public Java.Scope getEnclosingScope()
Returns:
The enclosing scope (as previously set by setEnclosingScope(Java.Scope))

toType

public Java.Type toType()
Overrides:
toType in class Java.Atom
Returns:
This atom, converted to Java.Type, or null if this atom is not a type

accept

public abstract void accept(Visitor.TypeVisitor visitor)
Invokes the 'visit...()' method of Visitor.TypeVisitor for the concrete Java.Type type.


janino.net