I asked Jamie, our doclet programmer, to respond, which is below.
-Doug Kramer
Javadoc team
Jamie's reply:
I am pretty sure that we release the implementations of RootDoc and PackageDoc
with the same source bundle that has the standard doclet. Here are their names:
com.sun.tools.javadoc.RootDocImpl
com.sun.tools.javadoc.PackageDocImpl
However, they cannot be extended because they are package private.
Do you understand what he means by wanting to extend them?
> I need to add some information to this documents from different XML files.
There probably is a way to get the job done without extending classes or
implementing interfaces in Javadoc. It's never a good idea to do this because
Javadoc is not a real API.
-Jamie