How do I access the = child element of the done node as shown in code below in XOM?
<done>=<start></start></done>
How do I access the = child element of the done node as shown in code below in XOM?
<done>=<start></start></done>
Copyright © 2021 Jogjafile Inc.
If you have the
doneElementnode, thendone.getChild(0)would give you aTextnode and which you can callgetValue()to get aStringwith=.