- ant task for javadoc added

- some javadoc changes
- package descriptions added

git-svn-id: https://svn.code.sf.net/p/libusbjava/code/trunk@160 94ad28fe-ef68-46b1-9651-e7ae4fcf1c4c
This commit is contained in:
schlaepfer
2006-08-17 10:33:43 +00:00
parent 625ce7d772
commit a3814e2443
6 changed files with 130 additions and 43 deletions

21
java/build.xml Normal file
View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="ch.ntb.usb" basedir=".">
<description>
Ant tasks for creating the javadoc (ch.ntb.usb)
</description>
<!-- javadoc properties -->
<!--
<property name="javadoc.destination" value="doc" />
-->
<property name="javadoc.destination" value="W:\inf\infoportalExternalDocs\projects\libusbWinJava\doc" />
<!-- build javadoc -->
<target name="javadoc">
<echo message="creating javadoc (\\www-server\web must be mapped to W:)" />
<javadoc destdir="${javadoc.destination}">
<fileset dir="src" defaultexcludes="yes">
</fileset>
</javadoc>
</target>
</project>