Hi Jon,
I've been looking for the options I could use with -Xdoclint, but without
success.
Whereas the javac -help -X gives compressed list of options, the javadoc
is missing it.
How can I get the complete list of options?
thanks,
Robert Scholte
Op Tue, 14 Jan 2014 21:06:23 +0100 schreef Jonathan Gibbons
<jonathan.gibb...@oracle.com>:
On 01/14/2014 06:38 AM, Rory O'Donnell Oracle, Dublin Ireland wrote:
We see that the javadoc executable has become stricter.
Especially the "reference not found" is tricky, since there's a good
chance the sources are from a dependency, something we cannot change.
The only workaround I could find was adding a excludePackageNames for
the specific class, but this will exclude all classes of that package
The -Xdoclint option allows you to disable some or all of the new checks
provided by javadoc. You can disable the reference checks with
-Xdoclint:all,-reference
-- Jon