File: user.xml

package info (click to toggle)
asm2 2.2.3-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 2,428 kB
  • ctags: 2,777
  • sloc: java: 22,655; xml: 1,227; makefile: 17
file content (39 lines) | stat: -rw-r--r-- 1,329 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<project name="asm" default="dist.jdoc">

  <property name="jdoc.name" value="user"/>
  <property name="jdoc.dir" value="${out.dist.jdoc}/${jdoc.name}"/>

  <target name="dist.jdoc">
    <uptodate property="jdoc.required" targetfile="${jdoc.dir}/index.html">
      <srcfiles dir="${src}" includes="**/*.java,**/*.html"/>
    </uptodate>
    <antcall target="dist.jdoc.${jdoc.name}"/>
  </target>

  <target name="dist.jdoc.user" unless="jdoc.required">
    <mkdir dir="${jdoc.dir}"/>
    <javadoc destdir="${jdoc.dir}"
             windowtitle="ASM Documentation"
             doctitle="ASM Documentation">

      <sourcepath path="${src}"/>
      <package name="org.objectweb.asm"/>
      <package name="org.objectweb.asm.attrs"/>
      <package name="org.objectweb.asm.commons"/>
      <package name="org.objectweb.asm.signature"/>
      <package name="org.objectweb.asm.tree"/>
      <package name="org.objectweb.asm.tree.analysis"/>
      <package name="org.objectweb.asm.util"/>
      <package name="org.objectweb.asm.util.attrs"/>
      <package name="org.objectweb.asm.xml"/>

      <link href="${jdk.url}" offline="true" packagelistLoc="${jdoc}"/>

    </javadoc>

    <copy todir="${jdoc.dir}">
      <fileset dir="${src}" includes="**/*.dtd"/>
    </copy>
  </target>

</project>