org.codehaus.groovy.runtime
Class XmlGroovyMethods

java.lang.Object
  extended by org.codehaus.groovy.runtime.XmlGroovyMethods

public class XmlGroovyMethods
extends Object

This class defines all the new XML-related groovy methods which enhance the normal JDK XML classes when inside the Groovy environment. Static methods are used with the first parameter the destination class.

Author:
Paul King, Jochen Theodorou

Constructor Summary
XmlGroovyMethods()
           
 
Method Summary
static Iterator<Node> iterator(NodeList nodeList)
          Makes NodeList iterable by returning a read-only Iterator which traverses over each Node.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

XmlGroovyMethods

public XmlGroovyMethods()
Method Detail

iterator

public static Iterator<Node> iterator(NodeList nodeList)
Makes NodeList iterable by returning a read-only Iterator which traverses over each Node.

Parameters:
nodeList - a NodeList
Returns:
an Iterator for a NodeList
Since:
1.0

Copyright © 2003-2009 The Codehaus. All rights reserved.