Class ParamTagImpl
- java.lang.Object
-
- gw.gosudoc.com.sun.tools.javadoc.main.TagImpl
-
- gw.gosudoc.com.sun.tools.javadoc.main.ParamTagImpl
-
@Deprecated class ParamTagImpl extends TagImpl implements ParamTag
Deprecated.Represents an @param documentation tag. Parses and stores the name and comment parts of the parameter tag.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 Modifier and Type Field Description private Tag[]inlineTagsDeprecated.Cached inline tags.private booleanisTypeParameterDeprecated.private java.lang.StringparameterCommentDeprecated.private java.lang.StringparameterNameDeprecated.private static java.util.regex.PatterntypeParamREDeprecated.
-
Constructor Summary
Constructors Constructor Description ParamTagImpl(DocImpl holder, java.lang.String name, java.lang.String text)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description Tag[]inlineTags()Deprecated.For the parameter comment with embedded @link tags return the array of TagImpls consisting of SeeTagImpl(s) and text containing TagImpl(s).booleanisTypeParameter()Deprecated.Return true if this ParamTag corresponds to a type parameter.java.lang.Stringkind()Deprecated.Return the kind of this tag.java.lang.StringparameterComment()Deprecated.Return the parameter comment.java.lang.StringparameterName()Deprecated.Return the parameter name.java.lang.StringtoString()Deprecated.convert this object to a string.-
Methods inherited from class gw.gosudoc.com.sun.tools.javadoc.main.TagImpl
divideAtWhite, docenv, firstSentenceTags, holder, name, position, text
-
-
-
-
Field Detail
-
typeParamRE
private static final java.util.regex.Pattern typeParamRE
Deprecated.
-
parameterName
private final java.lang.String parameterName
Deprecated.
-
parameterComment
private final java.lang.String parameterComment
Deprecated.
-
isTypeParameter
private final boolean isTypeParameter
Deprecated.
-
inlineTags
private Tag[] inlineTags
Deprecated.Cached inline tags.
-
-
Constructor Detail
-
ParamTagImpl
ParamTagImpl(DocImpl holder, java.lang.String name, java.lang.String text)
Deprecated.
-
-
Method Detail
-
parameterName
public java.lang.String parameterName()
Deprecated.Return the parameter name.- Specified by:
parameterNamein interfaceParamTag- Returns:
- the parameter name.
-
parameterComment
public java.lang.String parameterComment()
Deprecated.Return the parameter comment.- Specified by:
parameterCommentin interfaceParamTag- Returns:
- the parameter comment.
-
kind
public java.lang.String kind()
Deprecated.Return the kind of this tag.
-
isTypeParameter
public boolean isTypeParameter()
Deprecated.Return true if this ParamTag corresponds to a type parameter.- Specified by:
isTypeParameterin interfaceParamTag- Returns:
- true if this
ParamTagcorresponds to a type parameter.
-
toString
public java.lang.String toString()
Deprecated.convert this object to a string.
-
inlineTags
public Tag[] inlineTags()
Deprecated.For the parameter comment with embedded @link tags return the array of TagImpls consisting of SeeTagImpl(s) and text containing TagImpl(s).- Specified by:
inlineTagsin interfaceTag- Overrides:
inlineTagsin classTagImpl- Returns:
- TagImpl[] Array of tags with inline SeeTagImpls.
- See Also:
TagImpl.inlineTags(),ThrowsTagImpl.inlineTags()
-
-