Class XHTMLURIEscaper
java.lang.Object
net.sf.saxon.event.SequenceReceiver
net.sf.saxon.event.ProxyReceiver
net.sf.saxon.serialize.HTMLURIEscaper
net.sf.saxon.serialize.XHTMLURIEscaper
This class performs URI escaping for the XHTML output method. The logic for performing escaping
is the same as the HTML output method, but the way in which attributes are identified for escaping
is different, because XHTML is case-sensitive.
-
Field Summary
Fields inherited from class HTMLURIEscaper
currentElement, escapeURIAttributes, poolFields 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 attName, SimpleType typeCode, CharSequence value, int locationId, int properties) Notify an attribute.Methods inherited from class HTMLURIEscaper
escapeURL, isUrlAttribute, startDocument, startElementMethods inherited from class ProxyReceiver
append, characters, close, comment, endDocument, endElement, getNamePool, getUnderlyingReceiver, namespace, open, processingInstruction, setPipelineConfiguration, setSystemId, setUnderlyingReceiver, setUnparsedEntity, startContent, usesTypeAnnotationsMethods inherited from class SequenceReceiver
append, getConfiguration, getPipelineConfiguration, getSystemId
-
Constructor Details
-
XHTMLURIEscaper
-
-
Method Details
-
attribute
public void attribute(NodeName attName, SimpleType typeCode, CharSequence value, int locationId, int properties) throws XPathException Notify an attribute. Attributes are notified after the startElement event, and before any children. Namespaces and attributes may be intermingled.- Specified by:
attributein interfaceReceiver- Overrides:
attributein classHTMLURIEscaper- Parameters:
attName- 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
-