Web Site

org.codehaus.janino
Class Java.MethodDeclarator

java.lang.Object
  extended byorg.codehaus.janino.Java.Located
      extended byorg.codehaus.janino.Java.AbstractTypeBodyDeclaration
          extended byorg.codehaus.janino.Java.FunctionDeclarator
              extended byorg.codehaus.janino.Java.MethodDeclarator
All Implemented Interfaces:
Java.DocCommentable, Java.Locatable, Java.Scope, Java.TypeBodyDeclaration
Enclosing class:
Java

public static final class Java.MethodDeclarator
extends Java.FunctionDeclarator


Field Summary
 
Fields inherited from class org.codehaus.janino.Java.FunctionDeclarator
modifiers, thrownExceptions
 
Constructor Summary
Java.MethodDeclarator(Location location, Java.AbstractTypeDeclaration declaringType, String optionalDocComment, short modifiers, Java.Type type, String name, Java.FormalParameter[] formalParameters, Java.Type[] thrownExceptions)
           
 
Method Summary
 String toString()
           
 void visit(org.codehaus.janino.Visitor.TypeBodyDeclarationVisitor visitor)
           
 
Methods inherited from class org.codehaus.janino.Java.FunctionDeclarator
getDocComment, getEnclosingScope, getFormalParameters, getModifiers, getName, hasDeprecatedDocTag, setBody
 
Methods inherited from class org.codehaus.janino.Java.AbstractTypeBodyDeclaration
getDeclaringType, getLocation, isStatic, throwParseException
 
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, throwParseException
 

Constructor Detail

Java.MethodDeclarator

public Java.MethodDeclarator(Location location,
                             Java.AbstractTypeDeclaration declaringType,
                             String optionalDocComment,
                             short modifiers,
                             Java.Type type,
                             String name,
                             Java.FormalParameter[] formalParameters,
                             Java.Type[] thrownExceptions)
Method Detail

toString

public String toString()

visit

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

Web Site