Ok, one of my XDoclet'ed beans is subclassing another class.

This is _very_ dangerous I just discovered because the XDoclet generated
class hides some of the fields of the superclass.

Class A
|-bar (field)
|
\-> B extends A
    |-getBar() { return super.getBar(); }
    |
    \-> C extends B generated by Xdoclet
          |- getBar() { return this.bar; }

Ack! Is there anyway I can get XDoclet to NOT generate fields that already
exist in super classes? Those super classes have methods which touch their
own fields, so that when called they do not 'see' fields set through
C.setBar().

How to do?

-mike


Mike Cannon-Brookes :: [EMAIL PROTECTED]

Atlassian :: http://www.atlassian.com
     Supporting YOUR J2EE World


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

Reply via email to