Try out the "Private" attribute on <javadoc>. When in doubt... RTFM!
Erik
----- Original Message -----
From: "T Master" <[EMAIL PROTECTED]>
To: "ant user mailist" <[EMAIL PROTECTED]>
Sent: Tuesday, August 28, 2001 2:03 PM
Subject: javadocs and constructors
>
> My private constructors are not showing up in my javadocs. I am using
> ant1.4 beta2.
> Is there a way to show them?
>
> <target name="javadocs" depends="init">
> <echo message="Creating javadocs into ${javadoc.dir}..."/>
> <javadoc packagenames="${javadoc.packages}"
> verbose="false"
> sourcepath="${src.dir}"
> destdir="${javadoc.dir}"
> author="true"
> version="true"
> use="true"
> windowtitle="window title"
> doctitle="doc title"
> bottom="Copyright © 2001 All Rights Reserved.">
> <group title="Client packages"
> packages="com.blah.bleh.*"/>
> <!--link offline="true"
> href="http://java.sun.com/products/jdk/1.3/docs/api/"
> packagelistLoc=""/-->
> <link
> href="http://developer.java.sun.com/developer/products/xml/docs/api/"/>
> </javadoc>
> </target>
>
>