Not quite sure what you are trying to do.  I think that you has 
misinterpreted how to use getNextSibling().  Typically, you do a loop like:

for(DOMNode child = parent.getFirstChild();
        child != null;
        child = child.getNextSibling()) {...

It looks like you are doing something like:

for(DOMNode child = parent.getFirstChild();
        child != null;
        child = parent.getNextSibling()) {...



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to