How can one set javadoc options in a wrapper of the standard doclet?

196 Views Asked by At

The UMLGraph doclet UmlGraphDoc first runs the standard Java doclet with code like the following:

public static boolean start(RootDoc root) {
    com.sun.tools.doclets.standard.Standard.start(root);

and then modifies the result to add UML class diagrams.

The UMLGraph doclets introduce a number of custom tags, such as @depend and @has. Custom tags can be specified using the Taglet interface and passed to javadoc with the -taglet and -tagletpath options. My question is: how can these options can be specified to the standard doclet when it is invoked from another doclet?

Here are some things I have explored:

0

There are 0 best solutions below