Class CharacterMapExpander
java.lang.Object
net.sf.saxon.event.SequenceReceiver
net.sf.saxon.event.ProxyReceiver
net.sf.saxon.serialize.CharacterMapExpander
CharacterMapExpander: This ProxyReceiver expands characters occurring in a character map,
as specified by the XSLT 2.0 xsl:character-map declaration
- Author:
- Michael Kay
-
Field Summary
Fields inherited from class ProxyReceiver
nextReceiverFields inherited from class SequenceReceiver
pipelineConfiguration, previousAtomic, systemIdFields inherited from interface Result
PI_DISABLE_OUTPUT_ESCAPING, PI_ENABLE_OUTPUT_ESCAPING -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidattribute(NodeName nameCode, SimpleType typeCode, CharSequence value, int locationId, int properties) Output an attributevoidcharacters(CharSequence chars, int locationId, int properties) Output character datavoidSet the character maps to be used by this CharacterMapExpander.voidsetUseNullMarkers(boolean use) Indicate whether the result of character mapping should be marked using NUL characters to prevent subsequent XML or HTML character escaping.Methods inherited from class ProxyReceiver
append, close, comment, endDocument, endElement, getNamePool, getUnderlyingReceiver, namespace, open, processingInstruction, setPipelineConfiguration, setSystemId, setUnderlyingReceiver, setUnparsedEntity, startContent, startDocument, startElement, usesTypeAnnotationsMethods inherited from class SequenceReceiver
append, getConfiguration, getPipelineConfiguration, getSystemId
-
Constructor Details
-
CharacterMapExpander
-
-
Method Details
-
setCharacterMap
Set the character maps to be used by this CharacterMapExpander. They are merged into a single character map if there is more than one. -
setUseNullMarkers
public void setUseNullMarkers(boolean use) Indicate whether the result of character mapping should be marked using NUL characters to prevent subsequent XML or HTML character escaping. The default value is true (used for the XML and HTML output methods); the value false is used by the text output method. -
attribute
public void attribute(NodeName nameCode, SimpleType typeCode, CharSequence value, int locationId, int properties) throws XPathException Output an attribute- Specified by:
attributein interfaceReceiver- Overrides:
attributein classProxyReceiver- Parameters:
nameCode- The name of the attribute, as held in the name pooltypeCode- The type of the attribute, as held in the name poolvalue- the string value of the attributelocationId- an integer which can be interpreted using aLocationProviderto return information such as line number and system ID. If no location information is available, the value zero is supplied.properties- Bit significant value. The following bits are defined:- DISABLE_ESCAPING
- Disable escaping for this attribute
- NO_SPECIAL_CHARACTERS
- Attribute value contains no special characters
- Throws:
XPathException- if an error occurs
-
characters
Output character data- Specified by:
charactersin interfaceReceiver- Overrides:
charactersin classProxyReceiver- Parameters:
chars- The characterslocationId- an integer which can be interpreted using aLocationProviderto return information such as line number and system ID. If no location information is available, the value zero is supplied.properties- Bit significant value. The following bits are defined:- DISABLE_ESCAPING
- Disable escaping for this text node
- USE_CDATA
- Output as a CDATA section
- Throws:
XPathException- if an error occurs
-