Is there anyway to currently deal with cyclic object graphs within Castor XML? For 
example...

...
Person person = new Person();
person.addFriend(otherPerson1);
person.addFriend(otherPerson2);

// And I'm my own friend...
person.addFriend(person);
...

<person id="1">
    <friend id="2">
        ...
    </friend>
    <friend id="3">
        ...
    </friend>
    <friend idref="1"/>
</person>

=====
[EMAIL PROTECTED]

__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com

----------------------------------------------------------- 
If you wish to unsubscribe from this mailing, send mail to
[EMAIL PROTECTED] with a subject of:
        unsubscribe castor-dev

Reply via email to