|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object net.sf.saxon.event.SequenceReceiver
public abstract class SequenceReceiver
SequenceReceiver: this extension of the Receiver interface is used when processing a sequence constructor. It differs from the Receiver in allowing items (atomic values or nodes) to be added to the sequence, not just tree-building events.
Field Summary | |
---|---|
protected PipelineConfiguration |
pipelineConfiguration
|
protected boolean |
previousAtomic
|
protected String |
systemId
|
Fields inherited from interface javax.xml.transform.Result |
---|
PI_DISABLE_OUTPUT_ESCAPING, PI_ENABLE_OUTPUT_ESCAPING |
Constructor Summary | |
---|---|
SequenceReceiver(PipelineConfiguration pipe)
Create a SequenceReceiver |
Method Summary | |
---|---|
void |
append(Item item)
Append an item (node or atomic value) to the output |
abstract void |
append(Item item,
int locationId,
int copyNamespaces)
Append an arbitrary item (node or atomic value) to the output |
Configuration |
getConfiguration()
Get the Saxon Configuration |
NamePool |
getNamePool()
Get the name pool |
PipelineConfiguration |
getPipelineConfiguration()
Get the pipeline configuration |
String |
getSystemId()
Get the system ID |
void |
open()
Start the output process |
void |
setPipelineConfiguration(PipelineConfiguration pipelineConfiguration)
Set the pipeline configuration |
void |
setSystemId(String systemId)
Set the system ID |
void |
setUnparsedEntity(String name,
String systemID,
String publicID)
Notify an unparsed entity URI. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface net.sf.saxon.event.Receiver |
---|
attribute, characters, close, comment, endDocument, endElement, namespace, processingInstruction, startContent, startDocument, startElement, usesTypeAnnotations |
Field Detail |
---|
protected boolean previousAtomic
protected PipelineConfiguration pipelineConfiguration
protected String systemId
Constructor Detail |
---|
public SequenceReceiver(PipelineConfiguration pipe)
pipe
- the pipeline configurationMethod Detail |
---|
public final PipelineConfiguration getPipelineConfiguration()
Receiver
getPipelineConfiguration
in interface Receiver
public void setPipelineConfiguration(PipelineConfiguration pipelineConfiguration)
Receiver
setPipelineConfiguration
in interface Receiver
pipelineConfiguration
- the pipeline configurationpublic final Configuration getConfiguration()
public void setSystemId(String systemId)
setSystemId
in interface Result
setSystemId
in interface Receiver
systemId
- the URI used to identify the tree being passed across this interfacepublic String getSystemId()
getSystemId
in interface Result
public void setUnparsedEntity(String name, String systemID, String publicID) throws XPathException
setUnparsedEntity
in interface Receiver
name
- The name of the unparsed entitysystemID
- The system identifier of the unparsed entitypublicID
- The public identifier of the unparsed entity
XPathException
- if an error occurspublic void open() throws XPathException
open
in interface Receiver
XPathException
- if an error occurspublic abstract void append(Item item, int locationId, int copyNamespaces) throws XPathException
item
- the item to be appendedlocationId
- the location of the calling instruction, for diagnosticscopyNamespaces
- if the item is an element node, this indicates whether its namespaces
need to be copied. Values are NodeInfo.ALL_NAMESPACES
,
NodeInfo.LOCAL_NAMESPACES
, NodeInfo.NO_NAMESPACES
XPathException
- if the operation failspublic void append(Item item) throws XPathException
item
- the item to be appended
XPathException
- if the operation failspublic NamePool getNamePool()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |