Package org.jboss.staxmapper
Interface XMLAttributeReader<T>
-
- Type Parameters:
T- the type that this reader can operate on
public interface XMLAttributeReader<T>A reader which pulls an object information out of some XML attribute and appends it to a provided object model.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidreadAttribute(javax.xml.stream.XMLStreamReader reader, int index, T value)Parse an attribute.
-
-
-
Method Detail
-
readAttribute
void readAttribute(javax.xml.stream.XMLStreamReader reader, int index, T value) throws javax.xml.stream.XMLStreamExceptionParse an attribute.- Parameters:
reader- the stream readerindex- the attribute indexvalue- the value passed in- Throws:
javax.xml.stream.XMLStreamException- if an error occurs
-
-