Changes log says under 0.9.3.9:
XML: Fixed bug in the generated classes: the attributes of complexTypes
which contained
nested groups were wrongly located.
(Reported by Joseph Campolongo [[EMAIL PROTECTED]]) (Arnaud)
I see that this problem has been fixed, however, it started another one, I
believe.
Yes, attributes must be in the parent element, but not the content. This fix
removed content field and set/get methods from group items as well. It
should have stayed in the items.
Currently, when we have XML like "<p>hello <b>John</b> how are you?</p>"
instead of having items under 'p' as
p.item.content: hello
p.item.b: john
p.item.content: how are you?
now we have
p.content: hello how are you?
p.item.b: john
And this is marshalled as
<p>hello how are you? <b>john</b></p>
Has it been reported previously?
Ozgur
-----------------------------------------------------------
If you wish to unsubscribe from this mailing, send mail to
[EMAIL PROTECTED] with a subject of:
unsubscribe castor-dev