I would like to know how to generate CMR fields for CMP2.0 entity beans.
The @relation tag does not seem to have anything to do with that.

Normally, you define abstract methods for navigating the relations, e.g.

class Customer
{
    abstract public Collection getAccounts();
}

and

class Account
{
   abstract public Customer getCustomer();
}

what xdoclet tags do I have to apply to these two methods?
Thanks in advance,

- Andreas
____________________________________
Andreas Schildbach
senior software architect and developer
financial media service



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

Reply via email to