Hello,
I have a HIRIX snippet:
Element root = HirixInitializer.parse( new FileInputStream( "./src/examples/xml/hirix/resrc/xmls/hirix.xml") )
root.marshall() // prints to console correctly
def elements = []
root.allElements.each{ elements << it; println it }
// elements here is still null
However, although the root is printed to the console, I cannot seem to get the elements in the groovy list.
What am I doing incorrectly?
email:
st_clair@flowja.com