net.cscott.sinjdoc

Interface MethodDoc

public interface MethodDoc extends ExecutableMemberDoc

The MethodDoc class represents a (non-constructor) member of a java class.

Version: $Id: MethodDoc.java,v 1.5 2003/05/08 03:54:25 cananian Exp $

Author: C. Scott Ananian (cscott@cscott.net)

See Also: com.sun.javadoc.MethodDoc

Method Summary
booleanisAbstract()
Return true if this method is abstract.
MethodDocoverriddenMethod()
Return the method that this method overrides, or null if there is no such method.
TypereturnType()
Return the return type of this method, null if it is void.

Method Detail

isAbstract

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

overriddenMethod

public MethodDoc overriddenMethod()
Return the method that this method overrides, or null if there is no such method.

returnType

public Type returnType()
Return the return type of this method, null if it is void.
Copyright © 2003 C. Scott Ananian