I know my suggestion is silly, but when I started using xdoclet I did not thought about it: I was surprised to only get todos that are in actual javadoc. I was hoping it would also pickup @todo's from inline comments (//these kind of comments), which it doesn't ! :)
g -----Original Message----- From: Amorossi, Christine [mailto:[EMAIL PROTECTED] Sent: mercredi 11 f�vrier 2004 17:17 To: [EMAIL PROTECTED] Subject: RE: [Xdoclet-user] todo list question I changed my target as per the suggestion. The target is now: <target name="todo" depends="compile, compile_test"> <mkdir dir="${build.docs}/todo"/> <documentdoclet destdir="${build.docs}/todo"> <fileset dir="${src}"> <include name="*/**.java"/> </fileset> <info tag="todo"/> </documentdoclet> </target> My todo list is still empty. I'm sure that I'm just doing something very stupid!! -- Chris > -----Original Message----- > From: Konstantin Priblouda [mailto:[EMAIL PROTECTED] > Sent: Wednesday, February 11, 2004 10:53 AM > To: [EMAIL PROTECTED] > Subject: Re: [Xdoclet-user] todo list question > > > > --- "Amorossi, Christine" > <[EMAIL PROTECTED]> wrote: > > > > Hi, > > > > I'm just starting with XDoclet and I'm trying to > > create the "todo" lists. > > > > 1. I've added some @todo tags to my code. > > > > 2. And, I've added the following target to my > > build.xml: > > > > <taskdef name="documentdoclet" > > classname="xdoclet.modules.doc.DocumentDocletTask" > > classpathref="XDoclet.path"/> > > > > <target name="todo" depends="compile, > > compile_test"> > > <mkdir dir="${build.docs}/todo"/> > > > > <documentdoclet destdir="${build.docs}/todo"> > > <fileset dir="${src}/com/retaildna/Model"> > > <include name="Queryable.java"/> > > </fileset> > > <info tag="todo"/> > > </documentdoclet> > > </target> > > You have to specify root of our package hierarchy in > fileset ( ${src} ) and include **/*.java > > regards, > > ===== > ----[ Konstantin Pribluda ( ko5tik ) ]---------------- > Zu Verst�rkung meines Teams suche ich ab Sofort einen > Softwareentwickler[In] f�r die Festanstellung. > Arbeitsort: Mainz > Skills: Programieren, Kentnisse in OpenSource-Bereich > ----[ http://www.pribluda.de ]------------------------ > > __________________________________ > Do you Yahoo!? > Yahoo! Finance: Get your refund fast by filing online. > http://taxes.yahoo.com/filing.html > > > ------------------------------------------------------- > SF.Net is sponsored by: Speed Start Your Linux Apps Now. > Build and deploy apps & Web services for Linux with > a free DVD software kit from IBM. Click Now! > http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click > _______________________________________________ > xdoclet-user mailing list > [EMAIL PROTECTED] > https://lists.sourceforge.net/lists/listinfo/xdoclet-user > ------------------------------------------------------- SF.Net is sponsored by: Speed Start Your Linux Apps Now. Build and deploy apps & Web services for Linux with a free DVD software kit from IBM. Click Now! http://ads.osdn.com/?ad_id56&alloc_id438&op=ick _______________________________________________ xdoclet-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/xdoclet-user ------------------------------------------------------- SF.Net is sponsored by: Speed Start Your Linux Apps Now. Build and deploy apps & Web services for Linux with a free DVD software kit from IBM. Click Now! http://ads.osdn.com/?ad_id56&alloc_id438&op=click _______________________________________________ xdoclet-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/xdoclet-user
