Class ParamTagImpl

  • All Implemented Interfaces:
    ParamTag, Tag

    @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 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:
        parameterName in interface ParamTag
        Returns:
        the parameter name.
      • parameterComment

        public java.lang.String parameterComment()
        Deprecated.
        Return the parameter comment.
        Specified by:
        parameterComment in interface ParamTag
        Returns:
        the parameter comment.
      • kind

        public java.lang.String kind()
        Deprecated.
        Return the kind of this tag.
        Specified by:
        kind in interface Tag
        Overrides:
        kind in class TagImpl
        Returns:
        the kind of this tag.
      • isTypeParameter

        public boolean isTypeParameter()
        Deprecated.
        Return true if this ParamTag corresponds to a type parameter.
        Specified by:
        isTypeParameter in interface ParamTag
        Returns:
        true if this ParamTag corresponds to a type parameter.
      • toString

        public java.lang.String toString()
        Deprecated.
        convert this object to a string.
        Specified by:
        toString in interface Tag
        Overrides:
        toString in class TagImpl