Adds some convenience methods to XMLIterator
package javax.xml.stream;
public interface XMLEventReader extends XMLIterator {
public XMLEvent peek() throws XMLStreamException;
public String getElementText() throws XMLStreamException;
public XMLEvent nextTag() throws XMLStreamException;
public Object getProperty(java.lang.String name)
throws IllegalArgumentException;
}