[Xdoclet-user] webdoclet, how to fetch super class attributes?

2006-11-29 Thread Markus Innerebner
Hi I am generating with webdoclet the tld files, but I have the problem, that webdoclet fetches only the attributes from it's own class, but not the attributes from his superclass. Do I need to specify some special tag where I am writing the class declaration? thanks for any help Markus ---

Re: [Xdoclet-user] implementation class from interface class

2006-11-29 Thread Konstantin Priblouda
--- Narahari 'n' Savitha <[EMAIL PROTECTED]> wrote: > 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, Strin

[Xdoclet-user] 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