How to generate the final documentation
 

When you have made all the necessary comments in the sourcecode and maybe build a custom template, its time to let proDOC run over your source code. If you use eclipse exporting the doc is quiet easy. Your library should be a project in eclipse, in the package explorer click right on your project. Choose export in the appearing menue and then choose javadoc and click next.

Now you have the javadoc generation dialog. First make sure only your library project is selected. Select use custom doclet, this is the point where you have to tell eclipse, that the doc has to be generated by proDOC. So in the field "Doclet name" enter: prodoc.StartDoclet. In the next field " Doclet class path" you have to enter the path to the prodoc.jar file, placed in the prodoc installation folder. Finally press finnish and the doc should be generated.

If you do not use eclipse, think about using it, or generate the documentation with the commandline. Here is an example:

c:\javadoc -doclet prodoc.StartDoclet -docletpath c:\the\path\to\prodoc 
-sourcepath c:\the\path\to\your_lib
I tried to implement an exceptionhandling that gives you information about errors during the generation, so that you know where you made mistakes in the template files or sourcecode comments. If everything worked you should find the complete documentation in a new documentation folder inside your lib.