At 11:18 2002-04-19 +0700, Lanh TRAN VAN wrote:
>public class AdministratorData
> extends sdc.smart.user.UserData
> implements java.io.Serializable
>{
> static final long serialVersionUID = 821305460747458512L;
> public AdministratorData()
> {
> }
> public AdministratorData( AdministratorData otherData )
> {
> }
>..
>}
>
>Why the UserData constructor is not called inside the AdministratorData
>constructor?
The parent class constructor without any arguments is called by default
before entering the child class constructor when nothing else is said in
Java. You only have to make the call yourself when you want to, or need to
specify arguments to a parent class constructor. So, if I've understood you
correctly, this has nothing to do with XDoclet.
/Daniel
_______________________________________________
Xdoclet-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user