<target
depends="init"
description="Generates the HTML pages that shows the usage of the AntDoc API."
name="antdoc.api.document"
>
<delete dir="${TEMPORARY_ROOT_DIRECTORY_PATH}/j2h"/>
<mkdir dir="${TEMPORARY_ROOT_DIRECTORY_PATH}/j2h"/>
<taskdef
classname="com.java2html.Java2HTMLTask"
name="java2html"
/>
<java2html destination="${TEMPORARY_ROOT_DIRECTORY_PATH}/j2h">
<fileset dir="${JAVA_SOURCE_DIRECTORY_PATH}">
<include name="${ED_PACKAGE_PATH}/ant/**/AntDocGeneratorExample.java"/>
</fileset>
</java2html>
</target>
|