[Simple-support] positions of elements
Brought to you by:
niallg
|
From: gato c. <da...@gm...> - 2011-11-16 20:50:47
|
Hi
I have a class like next one:
class A{
@Element
B b;
@Element
C c;
}
result at parsing:
<a >
<b>
<c>
</a>
How can I change the positions of elements?, in order to get:
<a >
<c>
<b>
</a>
Thanks a lot.
|