ant-eclipse
Target document

document

  |
  +--prepare
    |
    +--check

Generates the documentation.

The documentation for this build file and the Java source code documentation is generated by this task, for the productive classes and for the testing ones, everything in HTML.

Detail:
<target
	depends="prepare"
	description="Generates the documentation."
	name="document"
>
	<antdoc
		buildfile="${ant.file}"
		css="antdoc.css"
		destination="${doc.dir}/build"
	/>

	<javadoc
		access="protected"
		author="true"
		breakiterator="yes"
		charset="utf-8"
		classpath="${classpath}"
		destdir="${doc.dir}/${src.dir}"
		docencoding="utf-8"
		doctitle="Ant-Eclipse"
		linksource="yes"
		nodeprecated="false"
		nodeprecatedlist="false"
		nohelp="false"
		noindex="false"
		nonavbar="false"
		notree="false"
		overview="${src.dir}/overview.html"
		packagenames="prantl.ant.eclipse"
		source="${javadoc.source}"
		sourcepath="${src.dir}"
		splitindex="false"
		use="true"
		version="true"
		windowtitle="Ant-Eclipse"
	/>

	<javadoc
		access="protected"
		author="true"
		breakiterator="yes"
		charset="utf-8"
		classpath="${classpath}"
		destdir="${doc.dir}/${tst.dir}"
		docencoding="utf-8"
		doctitle="Ant-Eclipse Tests"
		linksource="yes"
		nodeprecated="false"
		nodeprecatedlist="false"
		nohelp="false"
		noindex="false"
		nonavbar="false"
		notree="false"
		overview="${tst.dir}/overview.html"
		packagenames="prantl.ant.eclipse"
		source="${javadoc.source}"
		sourcepath="${tst.dir}"
		splitindex="false"
		use="true"
		version="true"
		windowtitle="Ant-Eclipse Tests"
	/>
</target>


Edouard Mercier 2003.10.01 21:48:07 - AntDoc V0.8g - XSL Transformer Factory: org.apache.xalan.processor.TransformerFactoryImpl