[jdom-interest] Javadoc -private

Angelo violin at thesaguaros.com
Sat Apr 20 02:03:21 PDT 2002


Noam Tamim wrote:

 > Hi.
 >
 > What do I need to change in build.xml to have 'build javadoc' also
 > build the docs for private stuff?



You should add the attribute private="yes" to the javadoc task.

You have to modify the javadoc target in this way:


<target name="javadoc" depends="prepare-src,collections">
      <mkdir dir="${build.javadocs}"/>
      <javadoc packagenames="${packages}"
               sourcepath="${build.src}"
               destdir="${build.javadocs}"
               author="true"
               version="true"

               private="true"

               use="true"
               splitindex="true"
               noindex="false"
               windowtitle="${Name} API"
               doctitle="${Name}"
               bottom="Copyright &#169; ${year} Jason Hunter, Brett
McLaughlin. Al
l Rights Reserved."
      />
    </target>





Bye

Angelo









More information about the jdom-interest mailing list