Class ParameterImpl
- java.lang.Object
-
- gw.gosudoc.com.sun.tools.javadoc.main.ParameterImpl
-
- All Implemented Interfaces:
Parameter
@Deprecated class ParameterImpl extends java.lang.Object implements 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.
-
-
Constructor Summary
Constructors Constructor Description ParameterImpl(DocEnv env, com.sun.tools.javac.code.Symbol.VarSymbol sym)Deprecated.Constructor of parameter info class.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description AnnotationDesc[]annotations()Deprecated.Get the annotations of this parameter.java.lang.Stringname()Deprecated.Get local name of this parameter.java.lang.StringtoString()Deprecated.Returns a string representation of the parameter.Typetype()Deprecated.Get the type of this parameter.java.lang.StringtypeName()Deprecated.Get type name of this parameter.
-
-
-
Constructor Detail
-
ParameterImpl
ParameterImpl(DocEnv env, com.sun.tools.javac.code.Symbol.VarSymbol sym)
Deprecated.Constructor of parameter info class.
-
-
Method Detail
-
type
public Type type()
Deprecated.Get the type of this parameter.
-
name
public java.lang.String name()
Deprecated.Get local name of this parameter. For example if parameter is the short 'index', returns "index".
-
typeName
public java.lang.String typeName()
Deprecated.Get type name of this parameter. For example if parameter is the short 'index', returns "short".
-
toString
public java.lang.String toString()
Deprecated.Returns a string representation of the parameter.For example if parameter is the short 'index', returns "short index".
-
annotations
public AnnotationDesc[] annotations()
Deprecated.Get the annotations of this parameter. Return an empty array if there are none.- Specified by:
annotationsin interfaceParameter- Returns:
- the annotations of this parameter.
-
-