Hello, I have my own subtask like the code below:

public class BaseActionSubTask extends TemplateSubTask {
private final static String RESOURCE = "resources/base_action.xdt";
public final static String DEFAULT_NAME = "{0}BaseAction";

   public BaseActionSubTask() {
       setTemplateURL(getClass().getResource(RESOURCE));
       setDestinationFile(DEFAULT_NAME+".java");
       setHavingClassTag("caedframework:action");
   }
}

When I run the ant task it generate a *BaseAction class for each class level
taglets like:

...
/**
*
* @caedframework.action
*
*/
public class OpenFile extends Action {
...

And it works perfectly... Now, how can I generate one class for each method
taglet like:

...
/**
*
* @caedframework.action
*
*/
public void aMethod(String param) {
...

Its possible? Thanks very much!!!

--
------------------------------------------------------------
Ary Junior
Sun Certified Java Programmer - SCJP 1.4
Site: http://www.powerline.com.br/~aryjr/aryjr/
Telefone: (32) 9118-8852
------------------------------------------------------------
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
xdoclet-user mailing list
xdoclet-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to