net.sf.saxon.event

Class XHTMLURIEscaper

Implemented Interfaces:
Receiver, Result

public class XHTMLURIEscaper
extends HTMLURIEscaper

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 net.sf.saxon.event.HTMLURIEscaper

currentElement, escapeURIAttributes, pool

Fields inherited from class net.sf.saxon.event.ProxyReceiver

nextReceiver

Fields inherited from class net.sf.saxon.event.SequenceReceiver

pipelineConfiguration, previousAtomic, systemId

Method Summary

void
attribute(int nameCode, int typeCode, CharSequence value, int locationId, int properties)
Notify an attribute.
void
open()
Do the real work of starting the document.

Methods inherited from class net.sf.saxon.event.HTMLURIEscaper

attribute, escapeURL, isUrlAttribute, startDocument, startElement

Methods inherited from class net.sf.saxon.event.ProxyReceiver

append, attribute, characters, close, comment, endDocument, endElement, getConfiguration, getDocumentLocator, getNamePool, getUnderlyingReceiver, namespace, open, processingInstruction, setPipelineConfiguration, setSystemId, setUnderlyingReceiver, setUnparsedEntity, startContent, startDocument, startElement

Methods inherited from class net.sf.saxon.event.SequenceReceiver

append, getConfiguration, getNamePool, getPipelineConfiguration, getSystemId, open, setPipelineConfiguration, setSystemId, setUnparsedEntity

Method Details

attribute

public void attribute(int nameCode,
                      int 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:
attribute in interface Receiver
Overrides:
attribute in interface HTMLURIEscaper
Parameters:
nameCode - The name of the attribute, as held in the name pool
typeCode - The type of the attribute, as held in the name pool
properties - Bit significant value. The following bits are defined:

open

public void open()
            throws XPathException
Do the real work of starting the document. This happens when the first content is written.
Specified by:
open in interface Receiver
Overrides:
open in interface ProxyReceiver
Throws:
XPathException -