Searched refs:XMLEventAllocator (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jaxp/src/javax/xml/stream/util/
H A DXMLEventAllocator.java39 * is recommended. The XMLEventAllocator can be set on an XMLInputFactory
48 public interface XMLEventAllocator { interface
51 * This method creates an instance of the XMLEventAllocator. This
54 public XMLEventAllocator newInstance();
58 * state of the XMLStreamReader. If this XMLEventAllocator
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/events/
H A DStAXEventReader.java36 import javax.xml.stream.util.XMLEventAllocator;
43 protected XMLEventAllocator _eventAllocator;
53 _eventAllocator = (XMLEventAllocator)reader.getProperty(XMLInputFactory.ALLOCATOR);
171 public void setAllocator(XMLEventAllocator allocator) {
H A DStAXEventAllocatorBase.java35 import javax.xml.stream.util.XMLEventAllocator;
42 * The XMLEventAllocator can be set on an XMLInputFactory
45 * This base class uses EventFactory to create events as recommended in the JavaDoc of XMLEventAllocator.
55 public class StAXEventAllocatorBase implements XMLEventAllocator {
58 /** Creates a new instance of XMLEventAllocator */
67 // ---------------------methods defined by XMLEventAllocator-----------------//
70 * This method creates an instance of the XMLEventAllocator. This
73 public XMLEventAllocator newInstance() {
79 * If this XMLEventAllocator does not have a one-to-one mapping between reader state
101 // ---------------------end of methods defined by XMLEventAllocator
[all...]
/openjdk7/jaxp/src/javax/xml/stream/
H A DXMLInputFactory.java32 import javax.xml.stream.util.XMLEventAllocator;
65 *<tr><td>javax.xml.stream.allocator</td><td>sets/gets the impl of the XMLEventAllocator interface</td><td>javax.xml.stream.util.XMLEventAllocator</td><td>Null</td><td>Yes</td></tr>
78 * @see javax.xml.stream.util.XMLEventAllocator
454 public abstract void setEventAllocator(XMLEventAllocator allocator);
459 public abstract XMLEventAllocator getEventAllocator();
/openjdk7/jaxp/src/com/sun/xml/internal/stream/
H A DXMLInputFactoryImpl.java32 import javax.xml.stream.util.XMLEventAllocator ;
158 public XMLEventAllocator getEventAllocator() {
159 return (XMLEventAllocator)getProperty(XMLInputFactory.ALLOCATOR);
232 public void setEventAllocator(XMLEventAllocator allocator) {
H A DXMLEventReaderImpl.java36 import javax.xml.stream.util.XMLEventAllocator;
46 protected XMLEventAllocator fXMLEventAllocator;
51 fXMLEventAllocator = (XMLEventAllocator)reader.getProperty(XMLInputFactory.ALLOCATOR);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/factory/
H A DStAXInputFactory.java45 import javax.xml.stream.util.XMLEventAllocator ;
166 public XMLEventAllocator getEventAllocator() {
167 return (XMLEventAllocator)getProperty(XMLInputFactory.ALLOCATOR);
241 public void setEventAllocator(XMLEventAllocator allocator) {
/openjdk7/jaxp/src/com/sun/xml/internal/stream/events/
H A DXMLEventAllocatorImpl.java30 import javax.xml.stream.util.XMLEventAllocator;
42 public class XMLEventAllocatorImpl implements XMLEventAllocator {
44 /** Creates a new instance of XMLEventAllocator */
64 public javax.xml.stream.util.XMLEventAllocator newInstance() {

Completed in 36 milliseconds