My lazy header ...

AntDoc
Target antdoc.javadoc

antdoc.javadoc
  |
  +--antdoc.classpath
    |
    +--init

Generates the JavaDoc of the AntDoc/AntDocGUI public API.

Use this target in order to understand how to use AntDoc in your Java code: this should be a good entry point since the code is reasonably well documented.

Detail:
<target
	depends="antdoc.classpath"
	description="Generates the JavaDoc of the AntDoc/AntDocGUI public API."
	name="antdoc.javadoc"
>
	<delete dir="${TEMPORARY_DIRECTORY_PATH}/javadoc/public"/>

	<mkdir dir="${TEMPORARY_DIRECTORY_PATH}/javadoc/public"/>

	<javadoc
		author="true"
		destdir="${TEMPORARY_DIRECTORY_PATH}/javadoc/public"
		nohelp="true"
		public="true"
		sourcefiles=""
		stylesheetfile="${WEBSITE_CSS_FILE_PATH}"
		version="true"
		windowtitle="JavaDoc of the AntDoc/AntDocGUI project"
	>

		<classpath>
			<path refid="FULL_CLASSPATH"/>

			<pathelement location="${REGEXP_JAR}"/>
		</classpath>

		<source file="${ED_PACKAGE_PATH}/ant/antdoc/AntDocGenerator.java"/>

		<source file="${ED_PACKAGE_PATH}/ant/antdoc/AntDocGeneratorExample.java"/>

		<--Unfortunately, not supported by Ant V1.4.1!-->

		<--fileset dir="${JAVA_SOURCE_DIRECTORY_PATH}">
                        				<include name="${ED_PACKAGE_PATH}/ant/antdoc/*.java"/>
                        				<exclude name="${ED_PACKAGE_PATH}/ant/antdoc/Info.java"/>
                        			</fileset>
                        			<sourcepath>
                        				<pathelement path="${JAVA_SOURCE_DIRECTORY_PATH}"/>
                        			</sourcepath-->
	</javadoc>
</target>

... is just like my footer!

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