How do I access the = child element of the done node as shown in code below in XOM?
<done>=<start></start></done>
If you have the done Element node, then done.getChild(0) would give you a Text node and which you can call getValue() to get a String with =.
done
Element
done.getChild(0)
Text
getValue()
String
=
If you have the
doneElementnode, thendone.getChild(0)would give you aTextnode and which you can callgetValue()to get aStringwith=.