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

/openjdk10/jaxp/src/java.xml/share/classes/javax/xml/stream/util/
H A DXMLEventAllocator.java36 * is recommended. The XMLEventAllocator can be set on an XMLInputFactory
45 public interface XMLEventAllocator { interface
48 * This method creates an instance of the XMLEventAllocator. This
51 public XMLEventAllocator newInstance();
55 * state of the XMLStreamReader. If this XMLEventAllocator
/openjdk10/jaxws/src/java.xml.bind/share/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...]
/openjdk10/jaxp/test/javax/xml/jaxp/module/ServiceProviderTest/src/xmlprovider1/xp1/
H A DXMLInputFactoryImpl.java37 import javax.xml.stream.util.XMLEventAllocator;
157 public void setEventAllocator(XMLEventAllocator allocator) {
162 public XMLEventAllocator getEventAllocator() {
/openjdk10/jaxp/test/javax/xml/jaxp/unittest/stream/XMLInputFactoryTest/
H A DMyInputFactory.java36 import javax.xml.stream.util.XMLEventAllocator;
152 public void setEventAllocator(XMLEventAllocator allocator) {
157 public XMLEventAllocator getEventAllocator() {
/openjdk10/jaxp/src/java.xml/share/classes/javax/xml/stream/
H A DXMLInputFactory.java29 import javax.xml.stream.util.XMLEventAllocator;
59 *<tr><th scope="row">javax.xml.stream.allocator</th><td>sets/gets the impl of the XMLEventAllocator interface</td><td>javax.xml.stream.util.XMLEventAllocator</td><td>Null</td><td>Yes</td></tr>
72 * @see javax.xml.stream.util.XMLEventAllocator
534 public abstract void setEventAllocator(XMLEventAllocator allocator);
539 public abstract XMLEventAllocator getEventAllocator();
/openjdk10/jaxp/test/javax/xml/jaxp/module/ServiceProviderTest/src/DefaultFactoryWrapperTest/xmlwrapperprovider/xwp/
H A DXMLInputFactoryWrapper.java37 import javax.xml.stream.util.XMLEventAllocator;
158 public void setEventAllocator(XMLEventAllocator allocator) {
163 public XMLEventAllocator getEventAllocator() {
/openjdk10/jaxp/src/java.xml/share/classes/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);
/openjdk10/jaxws/src/java.xml.bind/share/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) {
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/xml/internal/stream/events/
H A DXMLEventAllocatorImpl.java29 import javax.xml.stream.util.XMLEventAllocator;
43 public class XMLEventAllocatorImpl implements XMLEventAllocator {
46 * Creates a new instance of XMLEventAllocator
70 public javax.xml.stream.util.XMLEventAllocator newInstance() {

Completed in 110 milliseconds