[xdoclet-plugins-interest] custom template engine how to make it call another ant task

2006-11-29 Thread Narahari 'n' Savitha
Please help me understand this. Can I see an example of custom template engine which can invoke another ant task ? Also why should I write the TagLibrary.java for the .vm based file. What is it providing me ? -Narahari - T

Re: [xdoclet-plugins-interest] implementation class from interface class

2006-11-29 Thread Grégory Joseph
Hi Narahari, > Thanks for that answer. I looked at the extractor plugin. I am missing > something. > > Dummy.java, OtherDummy.java and ThirdDummy.java all have a whole bunch of > methods, but in the plugintestcase file you are only ignoring the toRem.* > methods. > > However the Expected.java on

Re: [xdoclet-plugins-interest] implementation class from interface class

2006-11-29 Thread Narahari 'n' Savitha
Greg, Thanks for that answer. I looked at the extractor plugin. I am missing something. Dummy.java, OtherDummy.java and ThirdDummy.java all have a whole bunch of methods, but in the plugintestcase file you are only ignoring the toRem.* methods. However the Expected.java only has the following

Re: [xdoclet-plugins-interest] implementation class from interface class

2006-11-29 Thread Grégory Joseph
On 29/11/06, Narahari 'n' Savitha <[EMAIL PROTECTED]> wrote: > Friends, > > I have an interface that I want an empty stubbed implementation class to be > generated. [...] > I want an implementation class for this to be spit out by xdoclet. How can > I accomplish that ? By writing a simple plugin.

[xdoclet-plugins-interest] implementation class from interface class

2006-11-29 Thread Narahari 'n' Savitha
Friends, I have an interface that I want an empty stubbed implementation class to be generated. package tmp; /** * @implmentation.class.name=TestImpl */ public interface Test { public String getMe(String name, String dob); public void getYou(int len, int width); } I want an implementation cl