Class ParameterImpl
java.lang.Object
gw.gosudoc.com.sun.tools.javadoc.main.ParameterImpl
- All Implemented Interfaces:
Parameter
Deprecated.
ParameterImpl information.
This includes a parameter type and parameter name.
This is NOT part of any supported API. If you write code that depends on this, you do so at your own risk. This code and its internal interfaces are subject to change or deletion without notice.
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionParameterImpl
(DocEnv env, com.sun.tools.javac.code.Symbol.VarSymbol sym) Deprecated.Constructor of parameter info class. -
Method Summary
Modifier and TypeMethodDescriptionDeprecated.Get the annotations of this parameter.name()
Deprecated.Get local name of this parameter.toString()
Deprecated.Returns a string representation of the parameter.type()
Deprecated.Get the type of this parameter.typeName()
Deprecated.Get type name of this parameter.
-
Field Details
-
env
Deprecated. -
sym
private final com.sun.tools.javac.code.Symbol.VarSymbol symDeprecated. -
type
Deprecated.
-
-
Constructor Details
-
ParameterImpl
ParameterImpl(DocEnv env, com.sun.tools.javac.code.Symbol.VarSymbol sym) Deprecated.Constructor of parameter info class.
-
-
Method Details
-
type
Deprecated.Get the type of this parameter. -
name
Deprecated.Get local name of this parameter. For example if parameter is the short 'index', returns "index". -
typeName
Deprecated.Get type name of this parameter. For example if parameter is the short 'index', returns "short". -
toString
Deprecated.Returns a string representation of the parameter.For example if parameter is the short 'index', returns "short index".
-
annotations
Deprecated.Get the annotations of this parameter. Return an empty array if there are none.- Specified by:
annotations
in interfaceParameter
- Returns:
- the annotations of this parameter.
-