Package net.sf.saxon.pull
Class ActiveStAXSource
- java.lang.Object
-
- net.sf.saxon.pull.ActiveStAXSource
-
- All Implemented Interfaces:
Source
,ActiveSource
public class ActiveStAXSource extends Object implements ActiveSource
An extension of StAXSource that makes the source active: that is, able to deliver itself to a SaxonReceiver
.Saxon can only handle a StAXSource that wraps an XMLStreamReader (not an XMLEventReader)
-
-
Field Summary
Fields Modifier and Type Field Description (package private) StAXSource
underlyingSource
-
Constructor Summary
Constructors Constructor Description ActiveStAXSource(StAXSource source)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
deliver(Receiver receiver, ParseOptions options)
Deliver the content of the source to a supplied Receiver.static ActiveStAXSource
fromStAXSource(StAXSource source)
String
getSystemId()
void
setSystemId(String systemId)
-
-
-
Field Detail
-
underlyingSource
StAXSource underlyingSource
-
-
Constructor Detail
-
ActiveStAXSource
public ActiveStAXSource(StAXSource source)
-
-
Method Detail
-
fromStAXSource
public static ActiveStAXSource fromStAXSource(StAXSource source) throws XMLStreamException
- Throws:
XMLStreamException
-
setSystemId
public void setSystemId(String systemId)
- Specified by:
setSystemId
in interfaceSource
-
getSystemId
public String getSystemId()
- Specified by:
getSystemId
in interfaceSource
-
deliver
public void deliver(Receiver receiver, ParseOptions options) throws XPathException
Description copied from interface:ActiveSource
Deliver the content of the source to a supplied Receiver.For many (but not all) implementations of
Source
, this method consumes the source and can therefore only be called once.- Specified by:
deliver
in interfaceActiveSource
- Parameters:
receiver
- the receiver to which events representing the parsed XML document will be sentoptions
- options for parsing the source- Throws:
XPathException
- if parsing fails for any reason. The detailed diagnostics will have been sent to the error reporter.
-
-