[jboss-cvs] JBossAS SVN: r105096 - in projects/jboss-jca/trunk/codegenerator/src/main: resources and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri May 21 10:23:33 EDT 2010


Author: jeff.zhang
Date: 2010-05-21 10:23:32 -0400 (Fri, 21 May 2010)
New Revision: 105096

Modified:
   projects/jboss-jca/trunk/codegenerator/src/main/java/org/jboss/jca/codegenerator/PropsCodeGen.java
   projects/jboss-jca/trunk/codegenerator/src/main/resources/build.xml.template
Log:
[JBJCA-330] add ant javadoc target

Modified: projects/jboss-jca/trunk/codegenerator/src/main/java/org/jboss/jca/codegenerator/PropsCodeGen.java
===================================================================
--- projects/jboss-jca/trunk/codegenerator/src/main/java/org/jboss/jca/codegenerator/PropsCodeGen.java	2010-05-21 14:21:26 UTC (rev 105095)
+++ projects/jboss-jca/trunk/codegenerator/src/main/java/org/jboss/jca/codegenerator/PropsCodeGen.java	2010-05-21 14:23:32 UTC (rev 105096)
@@ -195,7 +195,7 @@
       out.write(" * Indicates whether some other object is equal to this one.");
       writeEol(out);
       writeIndent(out, indent);
-      out.write(" * @param   obj   the reference object with which to compare.");
+      out.write(" * @param   other   the reference object with which to compare.");
       writeEol(out);
       writeIndent(out, indent);
       out.write(" * @return true if this object is the same as the obj argument; false otherwise.");

Modified: projects/jboss-jca/trunk/codegenerator/src/main/resources/build.xml.template
===================================================================
--- projects/jboss-jca/trunk/codegenerator/src/main/resources/build.xml.template	2010-05-21 14:21:26 UTC (rev 105095)
+++ projects/jboss-jca/trunk/codegenerator/src/main/resources/build.xml.template	2010-05-21 14:23:32 UTC (rev 105096)
@@ -37,4 +37,16 @@
          basedir="${build.dir}"
          includes="**/*.jar"/>
   </target>
+  
+  <!-- ================================= 
+       Target: docs
+       ================================= -->
+  <target name="docs" depends="compile">
+    <mkdir dir="${target.dir}/docs"/>
+    <javadoc packagenames="*"
+             sourcepath="src"
+             destdir="${target.dir}/docs"
+             classpathref="lib.path.id">
+    </javadoc>
+  </target>
 </project>
\ No newline at end of file




More information about the jboss-cvs-commits mailing list