Searched refs:xif (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/streaming/
H A DXMLStreamReaderFactory.java67 XMLInputFactory xif = getXMLInputFactory();
73 f = Zephyr.newInstance(xif);
77 if(xif.getClass().getName().equals("com.ctc.wstx.stax.WstxInputFactory"))
78 f = new Woodstox(xif);
89 XMLInputFactory xif = null;
92 xif = (XMLInputFactory)Class.forName("com.ctc.wstx.stax.WstxInputFactory").newInstance();
97 if (xif == null) {
98 xif = XMLInputFactory.newInstance();
100 xif.setProperty(XMLInputFactory.IS_NAMESPACE_AWARE, true);
101 xif
216 private final XMLInputFactory xif; field in class:XMLStreamReaderFactory.Zephyr
240 newInstance(XMLInputFactory xif) argument
256 Zephyr(XMLInputFactory xif, Class clazz) argument
348 private final ThreadLocal<XMLInputFactory> xif = new ThreadLocal<XMLInputFactory>() { field in class:XMLStreamReaderFactory.Default
384 private final XMLInputFactory xif; field in class:XMLStreamReaderFactory.NoLock
386 NoLock(XMLInputFactory xif) argument
416 Woodstox(XMLInputFactory xif) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/server/
H A DSDDocumentSource.java55 * @param xif
66 public abstract XMLStreamReader read(XMLInputFactory xif) throws IOException, XMLStreamException; argument
96 public XMLStreamReader read(XMLInputFactory xif) throws IOException, XMLStreamException {
99 xif.createXMLStreamReader(systemId.toExternalForm(),is), is);
119 public XMLStreamReader read(XMLInputFactory xif) throws XMLStreamException {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DSDDocumentImpl.java226 public XMLStreamReader read(XMLInputFactory xif) throws IOException, XMLStreamException { argument
227 return source.read(xif);

Completed in 31 milliseconds