Methods Summary |
---|
public java.lang.String | flatSignature()get flat signature. all types are not qualified.
return a String, which is the flat signiture of this member.
It is the parameter list, type is not qualified.
For instance, for a method mymethod(String x, int y) ,
it will return (String, int) .
|
public boolean | isNative()Return true if this method is native
|
public boolean | isSynchronized()Return true if this method is synchronized
|
public boolean | isVarArgs()Return true if this method was declared to take a variable number
of arguments.
|
public com.sun.javadoc.ParamTag[] | paramTags()Return the param tags in this method, excluding the type
parameter tags.
|
public com.sun.javadoc.Parameter[] | parameters()Get argument information.
|
public java.lang.String | signature()Get the signature. It is the parameter list, type is qualified.
For instance, for a method mymethod(String x, int y) ,
it will return (java.lang.String,int) .
|
public com.sun.javadoc.Type[] | thrownExceptionTypes()Return exceptions this method or constructor throws.
|
public com.sun.javadoc.ClassDoc[] | thrownExceptions()Return exceptions this method or constructor throws.
If the type of the exception is a type variable, return the
ClassDoc of its erasure.
The thrownExceptions method cannot
accommodate certain generic type constructs. The
thrownExceptionTypes method should be used
instead.
|
public com.sun.javadoc.ThrowsTag[] | throwsTags()Return the throws tags in this method.
|
public com.sun.javadoc.ParamTag[] | typeParamTags()Return the type parameter tags in this method.
|
public com.sun.javadoc.TypeVariable[] | typeParameters()Return the formal type parameters of this method or constructor.
Return an empty array if this method or constructor is not generic.
|