Class ParamTaglet
- java.lang.Object
-
- gw.gosudoc.com.sun.tools.doclets.internal.toolkit.taglets.BaseTaglet
-
- gw.gosudoc.com.sun.tools.doclets.internal.toolkit.taglets.ParamTaglet
-
- All Implemented Interfaces:
InheritableTaglet,Taglet
@Deprecated public class ParamTaglet extends BaseTaglet implements InheritableTaglet
Deprecated.A taglet that represents the @param 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.
- Since:
- 1.4
- Author:
- Jamie Ho
-
-
Field Summary
-
Fields inherited from class gw.gosudoc.com.sun.tools.doclets.internal.toolkit.taglets.BaseTaglet
name
-
-
Constructor Summary
Constructors Constructor Description ParamTaglet()Deprecated.Construct a ParamTaglet.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description ContentgetTagletOutput(Doc holder, TagletWriter writer)Deprecated.Given an array ofParamTags,return its string representation.booleaninField()Deprecated.Return true if thisTagletis used in field documentation.voidinherit(DocFinder.Input input, DocFinder.Output output)Deprecated.Given anDocFinder.Outputobject, set its values with the appropriate information to inherit documentation.booleaninMethod()Deprecated.Return true if thisTagletis used in method documentation.booleaninOverview()Deprecated.Return true if thisTagletis used in overview documentation.booleaninPackage()Deprecated.Return true if thisTagletis used in package documentation.booleaninType()Deprecated.Return true if thisTagletis used in type documentation (classes or interfaces).booleanisInlineTag()Deprecated.Return true if thisTagletis an inline tag.-
Methods inherited from class gw.gosudoc.com.sun.tools.doclets.internal.toolkit.taglets.BaseTaglet
getName, getTagletOutput, inConstructor
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface gw.gosudoc.com.sun.tools.doclets.internal.toolkit.taglets.Taglet
getName, getTagletOutput, inConstructor, toString
-
-
-
-
Method Detail
-
inherit
public void inherit(DocFinder.Input input, DocFinder.Output output)
Deprecated.Given anDocFinder.Outputobject, set its values with the appropriate information to inherit documentation.- Specified by:
inheritin interfaceInheritableTaglet- Parameters:
input- the input for documentation search.output- the output for documentation search.
-
inField
public boolean inField()
Deprecated.Return true if thisTagletis used in field documentation.- Specified by:
inFieldin interfaceTaglet- Overrides:
inFieldin classBaseTaglet- Returns:
- true if this
Tagletis used in field documentation and false otherwise.
-
inMethod
public boolean inMethod()
Deprecated.Return true if thisTagletis used in method documentation.- Specified by:
inMethodin interfaceTaglet- Overrides:
inMethodin classBaseTaglet- Returns:
- true if this
Tagletis used in method documentation and false otherwise.
-
inOverview
public boolean inOverview()
Deprecated.Return true if thisTagletis used in overview documentation.- Specified by:
inOverviewin interfaceTaglet- Overrides:
inOverviewin classBaseTaglet- Returns:
- true if this
Tagletis used in method documentation and false otherwise.
-
inPackage
public boolean inPackage()
Deprecated.Return true if thisTagletis used in package documentation.- Specified by:
inPackagein interfaceTaglet- Overrides:
inPackagein classBaseTaglet- Returns:
- true if this
Tagletis used in package documentation and false otherwise.
-
inType
public boolean inType()
Deprecated.Return true if thisTagletis used in type documentation (classes or interfaces).- Specified by:
inTypein interfaceTaglet- Overrides:
inTypein classBaseTaglet- Returns:
- true if this
Tagletis used in type documentation and false otherwise.
-
isInlineTag
public boolean isInlineTag()
Deprecated.Return true if thisTagletis an inline tag.- Specified by:
isInlineTagin interfaceTaglet- Overrides:
isInlineTagin classBaseTaglet- Returns:
- true if this
Tagletis an inline tag and false otherwise.
-
getTagletOutput
public Content getTagletOutput(Doc holder, TagletWriter writer)
Deprecated.Given an array ofParamTags,return its string representation.- Specified by:
getTagletOutputin interfaceTaglet- Overrides:
getTagletOutputin classBaseTaglet- Parameters:
holder- the member that holds the param tags.writer- the TagletWriter that will write this tag.- Returns:
- the TagletOutput representation of these
ParamTags.
-
-