Web Site

org.codehaus.janino
Interface Java.TypeBodyDeclaration

All Superinterfaces:
Java.Locatable, Java.Scope
All Known Implementing Classes:
Java.AbstractTypeBodyDeclaration, Java.FieldDeclarator
Enclosing interface:
Java

public static interface Java.TypeBodyDeclaration
extends Java.Locatable, Java.Scope

Representation of a "ClassBodyDeclaration" or an "InterfaceMemberDeclaration". These are:


Method Summary
 Java.TypeDeclaration getDeclaringType()
           
 boolean isStatic()
           
 void visit(org.codehaus.janino.Visitor.TypeBodyDeclarationVisitor visitor)
           
 
Methods inherited from interface org.codehaus.janino.Java.Locatable
getLocation, throwParseException
 
Methods inherited from interface org.codehaus.janino.Java.Scope
getEnclosingScope
 

Method Detail

getDeclaringType

public Java.TypeDeclaration getDeclaringType()

isStatic

public boolean isStatic()

visit

public void visit(org.codehaus.janino.Visitor.TypeBodyDeclarationVisitor visitor)

Web Site