0

How do I access the = child element of the done node as shown in code below in XOM?

<done>=<start></start></done>
Mover
  • 169
  • 12

1 Answers1

1

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 =.

Martin Honnen
  • 160,499
  • 6
  • 90
  • 110