How to describe your classes
  To describe you class, you first have to comment it by adding a comment section in front of the class.
class comment
package proxml;

import java.util.*;
import java.io.*;
import java.net.URL;
import java.net.URLConnection;
/**
* proXML is a reduced interface for writing and reading XML.
* @example proxml.pde
* @usage Application
* @related PCData
* @related addChild ( )
*/
public class XMLElement extends BasicElement{
...
You have to add a description in the comment like shown in the example above. The @usage tag is needed to specify the usage of the class. You can optionally add an @example tag to insert the code of an example file from the examples folder and @related tags to point to corresponding document parts.

proDOC is looking for superclasses of you class to insert their methods and fields, if you do not want that you can add a @nosuperclasses tag. proDOC is only scanning public classes, if there is class that should not be included in the documentation you can set an @invisible tag.

If you provide your own template files you have to include three files for the generation of the class doc files. Here is the first:
class.htm
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>@title</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="stylesheet.css" rel="stylesheet" type="text/css">
</head>
<body>
<center>
<table width="600" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="header">
<span class="libName">@libname</span>
<a href="index.htm">index</a></td>
<td class="descList"></td>
</tr>
<tr>
<td valign="top" class="mainTextName">Name</td>
<td class="methodName">@name</td>
</tr>
<tr>
<td valign=top class="mainText">Examples</td>
<td valign=top class="descList"><pre>@example</pre></td>
</tr>
<tr>
<td valign=top class="mainText">Description</td>
<td valign=top class="descList">@description</td>
</tr>
<tr>
<td valign=top class="mainText">Constructors</td>
<td valign=top class="descList"><pre>@syntax</pre></td>
</tr>
@parameters
@fields
@methods
<tr>
<td valign=top class="mainText">Usage</td>
<td class="descList">@usage</td>
</tr>
<tr>
<td valign=top class="mainText">Related</td>
<td class="descList">@related</td>
</tr>
</table>
</center>
</body>
</html>
For your own templates you have to make sure, that it includes several tags. In the example file above, taken from the the proDOC standard template you can see them. The first one is the @title tag, working identical like in the index template. Now comes the optional @libname tag for inserting the name of the library. You also have to include the @name tag as placeholder for the class name, the @example tag to insert code examples and @description for the description of the class. For the the syntax of the constructors you have to include the @syntax tag.

There are three more complex tags named @parameters, @fields and @methods. They are placeholders for further template files, which will be explained later.

The last two required tags are @usage to specify if the described class works for web, applicaion or both web and application and @related to insert links to point to coressponding parts of the documentation.

Lets come back to the @parameters, @fields and @methods tags, they stand for sections, that have to be multiple included . @fields and @methods mark the position where the field and method descriptions have to be inserted and @parameters is the placeholder for the explanation of the different constructor parameters. The htmlcode for this sections is placed in different template files. For your own template files you have to make sure that these parts fit together when they are merged by proDOC and that it is possible to repeat them.
classmembers.htm
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<table>
<!--startCell-->
<tr>
<td class="mainText">@kind</td>
<td valign=top class="descList">
<table border=0 cellspacing=0 cellpadding=0>
@member
</table>
</td>
</tr>
<!--endCell-->
</table>
</body>
</html>
classmembers is the template that is inserted in the @members section of the class template. You can build a complete html file for better designing and mark the block with the html comments startcell and endcell linke shown above. Notice the @members tag including a further template file named classmember.htm.
classmember.htm
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<table width=550 border=0 cellspacing=0 cellpadding=0>
<!--startCell-->
<tr>
<td width="120" valign=top><a href="@link">@name</a></td>
<td width="20">&nbsp;</td>
<td valign=top>@description</td>
</tr>
<!--endCell-->
</table>
</body>
</html>