Package gw.gosudoc.com.sun.tools.doclets.internal.toolkit.taglets

This package has classes used to generate Javadoc tag documentation. Doclets no longer have to implement its own version of standard tags such as @param and @throws. This is the single, doclet implementation of each standard tag that is shared by all doclets. Each doclet must have a taglet writer that takes a taglet as input and writes doclet-dependent output. The taglet itself will do the tag processing. For example, suppose we are outputing @throws tags. The taglet would:
  • Retrieve the list of throws tags to be documented.
  • Replace {@inheritDoc} with the appropriate documentation.
  • Add throws documentation for exceptions that are declared in the signature of the method but not documented with the throws tags.
After doing the steps above, the taglet would pass the information to the taglet writer for writing. The taglets are essentially builders for tags.

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.