I'm being extremely dense this morning. I'm using Ant's javaDoc task to
create the docs for my packages and want all methods to be included. I
think the correct Attribute is to use `Private`; but either I'm wrong or
not using the correct syntax.
Can you help?
<javadoc sourcepath="${build.home}/src"
destdir="${dist.home}/docs"
excludepackagenames="org.apache.tools.ant.*" >
<classpath refid="compile.classpath"
Private="true">
</javadoc>
TIA,
Roy
> I'm being extremely dense this morning. I'm using Ant's javaDoc task
> to create the docs for my packages and want all methods to be
[quoted text clipped - 9 lines]
> Private="true">
> </javadoc>
You have "Private" as an attribute of <classpath> rather than <javadoc>
Roy Epperson - 06 Mar 2007 16:16 GMT
Duh..... Thanks got on the wrong line
Thanks!
>> I'm being extremely dense this morning. I'm using Ant's javaDoc task
>> to create the docs for my packages and want all methods to be
[quoted text clipped - 11 lines]
>
> You have "Private" as an attribute of <classpath> rather than <javadoc>