net.sourceforge.jane.lang
Interface MethodInfo

All Superinterfaces:
JavaElement
All Known Implementing Classes:
JJTreeMethodInfo, QDoxMethodInfo, ReflectionMethodInfo

public interface MethodInfo
extends JavaElement

Class method information.


Method Summary
 Classes getExceptions()
          Returns the exception thrown by this method.
 Parameters getParameters()
          Returns the parameters of this method.
 ClassInfo getReturnType()
          Returns the return type of this method.
 boolean isAbstract()
          Returns true if this method is abstract.
 boolean isFinal()
          Returns true if this method is final.
 boolean isStatic()
          Returns true if this method is static.
 
Methods inherited from interface net.sourceforge.jane.lang.JavaElement
getName, isPackageProtected, isPrivate, isProtected, isPublic
 

Method Detail

getReturnType

public ClassInfo getReturnType()
Returns the return type of this method.

getExceptions

public Classes getExceptions()
Returns the exception thrown by this method.

getParameters

public Parameters getParameters()
Returns the parameters of this method.

isAbstract

public boolean isAbstract()
Returns true if this method is abstract.

isFinal

public boolean isFinal()
Returns true if this method is final.

isStatic

public boolean isStatic()
Returns true if this method is static.


Copyright © 2002-2002 SourceForge. All Rights Reserved.