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
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
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
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.
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