Web Site

org.codehaus.janino
Interface Java.PackageMemberTypeDeclaration

All Superinterfaces:
Java.Locatable, org.codehaus.janino.Java.NamedTypeDeclaration, Java.Scope, Java.TypeDeclaration
All Known Implementing Classes:
Java.PackageMemberClassDeclaration, Java.PackageMemberInterfaceDeclaration
Enclosing interface:
Java

public static interface Java.PackageMemberTypeDeclaration
extends org.codehaus.janino.Java.NamedTypeDeclaration

Represents a class or interface declaration on compilation unit level. These are called "package member types" because they are immediate members of a package, e.g. "java.lang.String".


Method Summary
 String getName()
          Returns the declared (not the fully qualified) name of the class or interface.
 
Methods inherited from interface org.codehaus.janino.Java.TypeDeclaration
createAnonymousClassName, createLocalTypeName, getClassName, getMemberTypeDeclaration, visit
 
Methods inherited from interface org.codehaus.janino.Java.Locatable
getLocation, throwParseException
 
Methods inherited from interface org.codehaus.janino.Java.Scope
getEnclosingScope
 

Method Detail

getName

public String getName()
Returns the declared (not the fully qualified) name of the class or interface.


Web Site