I have a quick Castor question. I would like to use Castor mapping to marshal a list of objects. These objects are of two different types, both extending the same abstract base class. I would like them to have different tags in the xml, but both be added to the same list. They also have slightly different fields. Is this possible? If so, how? Thanks for the help.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
It's certainly possible to marshal to XML. Use
in the declaration of your list field, and define separate mappings for the two classes that are members of your list. It'll then use the |
|||
|
|