Sorry, no deep information found about generating a todo/refactoring
list using xdoclet.

I want to generate a list showing all todo and refactoring tags
(not only the tags listen in the class header, also the others)


My class:

/**
 * Class Foo
 *
 * @author chh
 * @todo some general todos
 */

public class Foo {

  /*
   * Class bar do this
   *
   * @todo add some code
   * @refactor rename this class
   */
  public void Bar(){
        //my code
      //@todo dont forget this inner todo
  }
}


Using the an ant target, only class header tags will be written in the
list:

 <taskdef name="document" classname="xdoclet.doc.DocumentDocletTask" 
    classpathref="project.classpath"/>

 <document sourcepath="${source.dir}" destdir="${log.dir}/todo"
    classpathref="project.classpath">
    <fileset dir="${source.dir}">
       <include name="**/*.java" />
    </fileset>

    <info header="Todo list" projectname="Image" tag="todo" />
  </document>



I know that this is not the main function of xdoclet, but probably
someone can help.

Thanks in advance

Christian





-------------------------------------------------------
This SF.net email is sponsored by: ValueWeb:
Dedicated Hosting for just $79/mo with 500 GB of bandwidth!
No other company gives more support or power for your dedicated server
http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/
_______________________________________________
xdoclet-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to