srinivas88 0 Light Poster

Using SAX parsing method is there any way by which we can get all the children of a particular node. For example, if i am having a xml like this
<a>
<b>
<c></c>
</b>
</a>

Using DOM parsing i can get all the child elements of <a> with getChildNodes(). But since SAX parsing is serial, i am not very sure how can i get the children of a particular element.

Thanks in advance