Searched refs:StAXDocumentParser (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/fastinfoset/
H A DFastInfosetStreamReaderFactory.java28 import com.sun.xml.internal.fastinfoset.stax.StAXDocumentParser;
40 private ThreadLocal<StAXDocumentParser> pool = new ThreadLocal<StAXDocumentParser>();
47 StAXDocumentParser parser = fetch();
60 private StAXDocumentParser fetch() {
61 StAXDocumentParser parser = pool.get();
67 if (r instanceof StAXDocumentParser) {
68 pool.set((StAXDocumentParser) r);
H A DFastInfosetStreamReaderRecyclable.java28 import com.sun.xml.internal.fastinfoset.stax.StAXDocumentParser;
35 public final class FastInfosetStreamReaderRecyclable extends StAXDocumentParser implements XMLStreamReaderFactory.RecycleAware {
H A DFastInfosetCodec.java29 import com.sun.xml.internal.fastinfoset.stax.StAXDocumentParser;
62 private StAXDocumentParser _parser;
210 * Create a new (@link StAXDocumentParser} instance.
215 * @return a new {@link StAXDocumentParser} instance.
217 /* package */ static StAXDocumentParser createNewStreamReader(InputStream in, boolean retainState) {
218 StAXDocumentParser parser = new StAXDocumentParser(in);
234 * Create a new (@link StAXDocumentParser} recyclable instance.
239 * @return a new recyclable {@link StAXDocumentParser} instance.
241 /* package */ static StAXDocumentParser createNewStreamReaderRecyclabl
[all...]
H A DFastInfosetStreamSOAPCodec.java29 import com.sun.xml.internal.fastinfoset.stax.StAXDocumentParser;
62 private StAXDocumentParser _statefulParser;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/tools/
H A DFI_StAX_SAX_Or_XML_SAX_SAXEvent.java32 import com.sun.xml.internal.fastinfoset.stax.StAXDocumentParser;
55 StAXDocumentParser parser = new StAXDocumentParser();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/events/
H A DStAXEventReader.java122 StAXDocumentParser parser = (StAXDocumentParser)_streamReader;
150 StAXDocumentParser parser = (StAXDocumentParser)_streamReader;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DFastInfosetConnector.java33 import com.sun.xml.internal.fastinfoset.stax.StAXDocumentParser;
48 private final StAXDocumentParser fastInfosetStreamReader;
59 public FastInfosetConnector(StAXDocumentParser fastInfosetStreamReader,
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/factory/
H A DStAXInputFactory.java70 return new StAXDocumentParser(s, _manager);
107 StAXDocumentParser sr = null;
114 sr = new StAXDocumentParser();
118 //return new StAXDocumentParser(document, _manager);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/
H A DStAXDocumentParser.java69 public class StAXDocumentParser extends Decoder class in inherits:Decoder,XMLStreamReader,FastInfosetStreamReader,OctetBufferListener
71 private static final Logger logger = Logger.getLogger(StAXDocumentParser.class.getName());
143 public StAXDocumentParser() { method in class:StAXDocumentParser
148 public StAXDocumentParser(InputStream s) { method in class:StAXDocumentParser
154 public StAXDocumentParser(InputStream s, StAXManager manager) { method in class:StAXDocumentParser

Completed in 45 milliseconds