Contents | Package | Class | Tree | Index
PREV | NEXT SHOW LISTS | HIDE LISTS

Class sun.tools.javadoc.ParamTag

java.lang.Object
    |
    +----sun.tools.javadoc.Tag
            |
            +----sun.tools.javadoc.ParamTag

public class ParamTag
extends Tag
Represents an @param documentation tag. The parses and stores the name and comment parts of the method/constructor parameter tag.


Method Summary
java.lang.String  kind()
Return the kind of this tag.
java.lang.String  parameterComment()
Return the parameter comment.
java.lang.String  parameterName()
Return the parameter name.
java.lang.String  toString()
convert this object to a string.
 
Methods inherited from class sun.tools.javadoc.Tag
 kind, name, text, toString
 
Methods inherited from class java.lang.Object
 clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

parameterName

public java.lang.String parameterName()
Return the parameter name.

parameterComment

public java.lang.String parameterComment()
Return the parameter comment.

kind

public java.lang.String kind()
Return the kind of this tag.
Overrides:
kind in class Tag

toString

public java.lang.String toString()
convert this object to a string.
Overrides:
toString in class Tag

Contents | Package | Class | Tree | Index
PREV | NEXT SHOW LISTS | HIDE LISTS