Hi;
I am trying to generate javadocs for just the files that are the public api of my
program. So I copy those files to a different directory and then javadoc that
directory tree. However, it is somehow finding the additional files and including them
in the javadocs. (It however does not include files for directories that I have no
files in in the copied directory.) Here is my script (the directory temp2 does have
just the copied files.):
<target name="doc_user">
<delete dir="${temp2}"/>
<mkdir dir="${temp2}"/>
<copy todir="${temp2}" >
<fileset dir="${src}" includes="net/windward/**/overview.html,
net/windward/**/ProcessHtml.java,
net/windward/**/ProcessPdf.java,
net/windward/**/ProcessReport.java,
net/windward/**/ProcessRtf.java,
net/windward/**/ProcessTxt.java,
net/windward/**/HtmlImage.java"/>
</copy>
<delete dir="${userdocs}"/>
<mkdir dir="${userdocs}"/>
<javadoc packagenames="net.windward.*"
sourcepath="${temp2}"
destdir="${userdocs}"
use="true"
Overview="${temp2}/net/windward/overview.html"
/>
</javadoc>
</target>