Javadoc private option
Hi all,
I want to generate javadoc for few classes, including all private nested classes.
I ran javadoc from an ant file and got the following error -
[javadoc] javadoc: More than one of -public, -private, -package, or -protected specified.
Here is the ant target I used for javadoc generation:
<javadoc use="true"
version="true"
author="true"
access="private"
windowtitle="${WINDOWTITLE}"
doctitle="${DOCTITLE}"
header="${HEADER}"
bottom="${BOTTOM}"
destdir="${apidoc}"
classpathref="jdoc.classpath">
<packageset dir="${prj.dir}/src" defaultexcludes="yes" />
<packageset dir="${test.dir}" defaultexcludes="yes" />
</javadoc>
I even tried adding the following to the target but get the same error each time.
private="true"
package="false"
public="false"
protected="false"
Has anyone come across such a problem? Any solutions?
Thanks!

