Package org.jboss.staxmapper
Interface XMLElementReader<T>
-
- Type Parameters:
T- the type that this reader can operate on
public interface XMLElementReader<T>A reader which pulls an object out of some XML element and appends it to a provided object model.- Author:
- David M. Lloyd
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidreadElement(XMLExtendedStreamReader reader, T value)Parse an element and all of its nested content.
-
-
-
Method Detail
-
readElement
void readElement(XMLExtendedStreamReader reader, T value) throws XMLStreamException
Parse an element and all of its nested content.- Parameters:
reader- the stream readervalue- the value passed in- Throws:
XMLStreamException- if an error occurs
-
-