You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xmlbeans-user@xml.apache.org by On <ko...@cecid.hku.hk> on 2004/06/16 06:23:03 UTC

Can I retrieve the element in sequence?

Assume there are 3 element under the root element
<root>
    <a>abc</a>
    <b>123</b>
    <a>def</a>
</root>

Is there any method to let me know the position of element b is the second one.
or say, get all the children in sequence so that i can get the value one by one.
thanks