net.cscott.sinjdoc
public interface ExecutableMemberDoc extends MemberDoc
ExecutableMemberDoc
class represents a method or
constructor of a java class.
Version: $Id: ExecutableMemberDoc.java,v 1.4 2003/05/08 03:54:25 cananian Exp $
See Also: com.sun.javadoc.ExecutableMemberDoc
Method Summary | |
---|---|
boolean | isNative() Return true if this method is native. |
boolean | isSynchronized() Return true if this method is synchronized. |
List<Parameter> | parameters() Get argument information. |
List<ParamTag> | paramTags() Return the @param tags in this method. |
String | signature() Return the signature, which is the parameter list with all types
qualified. |
List<Type> | thrownExceptions() Return exceptions this method or constructor throws. |
List<ThrowsTag> | throwsTags() Return the @throws and @exception tags in this method. |
List<MethodTypeVariable> | typeParameters() Return the type variables declared by this method, if it is generic;
otherwise return a zero-length list. |
Returns: a list of parameters in source file order.
foo(String x, int y)
the
signature is "(java.lang.String,int)
".