| java.lang.Object net.sf.saxon.event.Sender
Sender | public class Sender (Code) | | Sender is a helper class that sends events to a Receiver from any kind of Source object
|
Method Summary | |
public void | send(Source source, Receiver receiver) Send the contents of a Source to a Receiver. | public void | send(Source source, Receiver receiver, boolean isFinal) Send the contents of a Source to a Receiver. |
send | public void send(Source source, Receiver receiver) throws XPathException(Code) | | Send the contents of a Source to a Receiver. Note that if the Source
identifies an element node rather than a document node, only the subtree
rooted at that element will be copied.
Parameters: source - the document or element to be copied Parameters: receiver - the destination to which it is to be copied |
send | public void send(Source source, Receiver receiver, boolean isFinal) throws XPathException(Code) | | Send the contents of a Source to a Receiver. Note that if the Source
identifies an element node rather than a document node, only the subtree
rooted at that element will be copied.
Parameters: source - the document or element to be copied Parameters: receiver - the destination to which it is to be copied Parameters: isFinal - set to true when the document is being processed purely for thesake of validation, in which case multiple validation errors in the source can bereported. |
|
|