net.cscott.sinjdoc
public interface Parameter
Parameter
interface represents parameter information,
including parameter type and parameter name.
Version: $Id: Parameter.java,v 1.5 2003/07/29 16:02:37 cananian Exp $
See Also: com.sun.javadoc.Parameter
Method Summary | |
---|---|
abstract boolean | isVarArgs() Returns true if this is a "varargs" parameter. |
abstract String | name() Return the local name of this parameter. |
abstract Type | printableType() Return the "printable type" -- this is the component type
of the type of a varargs parameter, otherwise it is the
type of the parameter. |
abstract String | toString() Return a human-readable string representing this parameter.
|
abstract Type | type() Return the type of this parameter. |
true
if this is a "varargs" parameter.short index
, returns "index".short index
,
returns "short index".short index
, then
type().typeName()
would be the string "short".