Currently, the doclet doesn't provide support for the @see documentation tag. It would be great if it could produce a section with a list of links from these tags below the documentation similar to {@link ...} tags.
Example Input
/**
* {DOCUMENTATION}
* ....
* @see SomeClass#someMethod()
* @see SomeOtherClass
*/
Example Output:
{DOCUMENTATION}
....
See also SomeClass.someMethod(), SomeOtherClass