Package net.sf.saxon.serialize
Interface CharacterReferenceGenerator
-
- All Known Implementing Classes:
DecimalCharacterReferenceGenerator
,HexCharacterReferenceGenerator
,HTMLEntityReferenceGenerator
public interface CharacterReferenceGenerator
A class that expands a character to a character reference, entity reference, etc, and writes the resulting reference to a writer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
outputCharacterReference(int charval, UnicodeWriter writer)
Generate a character reference
-
-
-
Method Detail
-
outputCharacterReference
void outputCharacterReference(int charval, UnicodeWriter writer) throws java.io.IOException
Generate a character reference- Parameters:
charval
- the unicode code point of the character concernedwriter
- the Writer to which the character reference is to be written- Throws:
java.io.IOException
- if the Writer reports an error
-
-