Re: TODO, //TODO or @todo

"Jim Cox" <[email protected]> Thu, 24 Aug 2006 09:28:00 -0400
Newsgroups gmane.emacs.jdee
Message-ID <[email protected]>
Not really a JDEE specific solution, but consider using xdoclet.

The following ant target generates a nicely formatted report for all @todo
tags (in class and method javadocs) that are in my project.

<target name="todo"
        depends="init-xdoclet">
   <documentdoclet destdir="reports">
      <fileset dir="src">
         <include name="**/*.java" />
      </fileset>
      <documentdoclet>
         <info />
      </documentdoclet>
</target>


-Jim


On 8/24/06, Benda Lukas <[email protected]> wrote:
>
> I want write some to do memo into code. Eclipse, IDEA or NetBeans have
> tool which take from code all occurrence of //TODO, //FIXME, //PENDING
> or //HACK and show list of all what you must to do.
>
> I found only ToDoTaglet for javadoc. It's good have this tag in
> documentation (it's better then plain commentary).
>
> But I want show all undone tasks on one place (in separate window, or in
> separate html page). I cannot search this function in mine XEmacs.
>
> Sorry. My English is terrible, i know :(
>
> Lukas "benzin" Benda
>   JAVA and Delphi programer
>   PHP and JavaScript coder
>   Databse application developer
>
> Czech Republic, Opava (Silesia)
> [email protected]
>