Methods Summary |
---|
public javax.xml.stream.events.XMLEvent | allocate(javax.xml.stream.XMLStreamReader reader)This method allocates an event given the current
state of the XMLStreamReader. If this XMLEventAllocator
does not have a one-to-one mapping between reader states
and events this method will return null. This method
must not modify the state of the XMLStreamReader.
|
public void | allocate(javax.xml.stream.XMLStreamReader reader, javax.xml.stream.util.XMLEventConsumer consumer)This method allocates an event or set of events
given the current
state of the XMLStreamReader and adds the event
or set of events to the
consumer that was passed in. This method can be used
to expand or contract reader states into event states.
This method may modify the state of the XMLStreamReader.
|
public javax.xml.stream.util.XMLEventAllocator | newInstance()This method creates an instance of the XMLEventAllocator. This
allows the XMLInputFactory to allocate a new instance per reader.
|