A wise old hermit known only as Vincent Harcq 
<[EMAIL PROTECTED]> once said:

> BTW in method="..." and parameters="..." there is type="..." that is
> missing to be complete.
> I had some Boolean getSth() and boolean isSth() in one of my stuff ;-)
> I think I should add this one also...

You sure about that?  I just created a Test.java with
public class Test {
  boolean foobar() {return false;}
  Boolean foobar() {return new Boolean(false);}
}
and it won't compile ("test.java:3: foobar() is already defined in test"). 
Also, when I was working on some abstract EJB superclasses recently I had 
to have the subclasses' finders return the abstract EJB's generated PK 
because the compiler insisted the overridden methods have the same return 
type...


Andrew.

_______________________________________________
Xdoclet-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-devel

Reply via email to