summaryrefslogtreecommitdiff
path: root/makefile/preflighting/javadoc.xml
diff options
context:
space:
mode:
authorEric Cloninger <dcp874@motorola.com>2012-08-21 16:47:26 -0500
committerEric Cloninger <dcp874@motorola.com>2012-08-21 16:47:26 -0500
commitcaaf5251628a0ef95931ed2e54449dbde92d97fc (patch)
treeb77127837ffddddf5fe7dafb48b812a3e125b7f5 /makefile/preflighting/javadoc.xml
parentdd37e1328b736a11354a5847ad82c5f2551defa5 (diff)
downloadmotodev-caaf5251628a0ef95931ed2e54449dbde92d97fc.tar.gz
Scripted build files for MOTODEV tools
Build the MOTODEV Eclipse plugins and App Validator with ant. Change-Id: I5e85c02797f8c7400412f881c1f69ca518e4b25e Signed-off-by: Eric Cloninger <dcp874@motorola.com>
Diffstat (limited to 'makefile/preflighting/javadoc.xml')
-rw-r--r--makefile/preflighting/javadoc.xml35
1 files changed, 35 insertions, 0 deletions
diff --git a/makefile/preflighting/javadoc.xml b/makefile/preflighting/javadoc.xml
new file mode 100644
index 0000000..72fe3ca
--- /dev/null
+++ b/makefile/preflighting/javadoc.xml
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<project name="JavaDoc">
+
+ <!-- Here are expected the following properties:
+
+ sourceCodeDirectories = Semi-colon separated directories which holds the classes where the Javadocs will
+ be generated from.
+
+ excludePackages = Packages which are to be excluded from the generated Javadoc document.
+
+ javadocOutputDirectory = The directory where the generated Javadocs will be placed.
+
+ javaAPIPackageLocationDirectory = The directory location of the API reference file. The file must
+ be named package-list.
+
+ javaAPIURLDirectory = The URL of the Java API.
+ -->
+
+ <target name="javadoc">
+ <javadoc packagenames="*.*"
+ sourcepath="${sourceCodeDirectories}"
+ excludepackagenames="${excludePackages}"
+ defaultexcludes="yes"
+ destdir="${javadocOutputDirectory}"
+ author="false"
+ version="true"
+ use="true"
+ windowtitle="App Validator Javadoc">
+ <link offline="true" href="${javaAPIURLDirectory}" packagelistloc="${javaAPIPackageLocationDirectory}" />
+ <doctitle><![CDATA[<h1>App Validator</h1>]]></doctitle>
+ <bottom><![CDATA[<i>Copyright &#169; 2011, Motorola Mobility, Inc. All rights reserved.</i>]]></bottom>
+ </javadoc>
+ </target>
+</project>