Hello;
I followed Rene's suggestion and hacked around ant-build to create javadocs. 
This works well with the exception of dependent classes.
I'm no NetRexx expert, but even less I understand ant...
Any hints?
TIA kp
*** build.xml target to create javadoc ***
    <target name="makedoc" description="make the java documentation" 
depends="compile">
    
    <move todir="doc" includeemptydirs="false">
    	<fileset dir=".">
      	<include name="**/*.java.keep"/>
      	</fileset>
      	<mapper type="glob" from="*.java.keep" to="*.java"/>	
    </move>
    <javadoc
          sourcepath="doc"
          destdir="javadoc"
           author="true"
           version="true"
           use="true"
           windowtitle="CCBuchungen">
      <fileset dir="doc" defaultexcludes="yes">
  	    <include name="**"/>
      </fileset>
    </javadoc>
    </target>
     
_______________________________________________
Ibm-netrexx mailing list
[hidden email]