Sophie

Sophie

distrib > Mageia > 3 > i586 > media > core-release-src > by-pkgid > d46c1d6dd34b7262025d0015b6f3c9be > files > 1

fit-java-1.1-2.mga3.src.rpm

--- source/imp/java/build.xml	2005-04-07 23:25:28.000000000 +0200
+++ source/imp/java/build.xml-gil	2011-06-10 13:54:57.505293215 +0200
@@ -39,6 +39,36 @@
     <javac srcdir="${source.dir}" destdir="${class.dir}" classpath="${junit.jar}" />
   </target>
 
+  <target name="javadoc" description="Generates the Javadoc of the application">
+    <tstamp>
+      <format property="year" pattern="yyyy" />
+    </tstamp>
+    <javadoc sourcepath="${source.dir}"  
+      packagenames="eg.*,fat.*,fit.*," 
+      destdir="${output.dir}/apidocs" 
+      windowtitle="Fit JavaDoc"
+      access="protected" 
+      old="false" 
+      verbose="false" 
+      version="true" 
+      use="true" 
+      author="true" 
+      splitindex="false" 
+      nodeprecated="false" 
+      nodeprecatedlist="false" 
+      notree="false" 
+      noindex="false" 
+      nohelp="false" 
+      nonavbar="false" 
+      serialwarn="false" 
+      charset="ISO-8859-1" 
+      linksource="false" 
+      breakiterator="false">
+      <doctitle><![CDATA[<h1>Fit - Framework for integrated test (Java implementation) 1.1 API</h1>]]></doctitle>
+      <bottom><![CDATA[<small>Copyright &#169; ${year} <a href="http://fit.c2.com/">Fit</a>. All Rights Reserved.</small>]]></bottom>
+    </javadoc>
+  </target>
+
   <!-- 
   ** test **
   -->