My lazy header ...

AntDoc
Target antdoc.api.document

antdoc.api.document
  |
  +--init

Generates the HTML pages that shows the usage of the AntDoc API.

The target requires that Java2HTML j2h.jar V1.3.1+ (http://www.vaegar.f9.co.uk) library be present in Ant library directory.

Detail:
<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>

... is just like my footer!

Edouard Mercier 2003.12.08 20:31:08 - AntDoc V0.8h - XSL Transformer Factory: com.icl.saxon.TransformerFactoryImpl