Package net.sf.saxon.event
Class UnicodeNormalizer
- java.lang.Object
-
- net.sf.saxon.event.SequenceReceiver
-
- net.sf.saxon.event.ProxyReceiver
-
- net.sf.saxon.event.UnicodeNormalizer
-
- All Implemented Interfaces:
javax.xml.transform.Result,Receiver
public class UnicodeNormalizer extends ProxyReceiver
UnicodeNormalizer: This ProxyReceiver performs unicode normalization on the contents of attribute and text nodes.- Author:
- Michael Kay
-
-
Field Summary
-
Fields inherited from class net.sf.saxon.event.ProxyReceiver
nextReceiver
-
Fields inherited from class net.sf.saxon.event.SequenceReceiver
pipelineConfiguration, previousAtomic, systemId
-
-
Constructor Summary
Constructors Constructor Description UnicodeNormalizer(java.lang.String form)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidattribute(int nameCode, int typeCode, java.lang.CharSequence value, int locationId, int properties)Output an attributevoidcharacters(java.lang.CharSequence chars, int locationId, int properties)Output character data-
Methods inherited from class net.sf.saxon.event.ProxyReceiver
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, getPipelineConfiguration, getSystemId
-
-
-
-
Constructor Detail
-
UnicodeNormalizer
public UnicodeNormalizer(java.lang.String form) throws XPathException- Throws:
XPathException
-
-
Method Detail
-
attribute
public void attribute(int nameCode, int typeCode, java.lang.CharSequence value, int locationId, int properties) throws XPathExceptionOutput 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 poollocationId- 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
-
characters
public void characters(java.lang.CharSequence chars, int locationId, int properties) throws XPathExceptionOutput 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
- NO_SPECIAL_CHARACTERS
- Value contains no special characters
- WHITESPACE
- Text is all whitespace
- Throws:
XPathException
-
-