Package com.aowagie.text.pdf
Class SimpleNamedDestination
- java.lang.Object
-
- com.aowagie.text.pdf.SimpleNamedDestination
-
- All Implemented Interfaces:
SimpleXMLDocHandler
final class SimpleNamedDestination extends java.lang.Object implements SimpleXMLDocHandler
-
-
Constructor Summary
Constructors Modifier Constructor Description private
SimpleNamedDestination()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description private static PdfArray
createDestinationArray(java.lang.String value, PdfWriter writer)
void
endDocument()
Called after the document is parsed.void
endElement(java.lang.String tag)
Called when an end tag is found.(package private) static java.lang.String
escapeBinaryString(java.lang.String s)
private static void
exportToXML(java.util.HashMap names, java.io.Writer wrt, java.lang.String encoding, boolean onlyASCII)
Exports the destinations to XML.void
startDocument()
Called when the document starts to be parsed.void
startElement(java.lang.String tag, java.util.HashMap h)
Called when a start tag is found.void
text(java.lang.String str)
Called when a text element is found.(package private) static java.lang.String
unEscapeBinaryString(java.lang.String s)
-
-
-
Method Detail
-
exportToXML
private static void exportToXML(java.util.HashMap names, java.io.Writer wrt, java.lang.String encoding, boolean onlyASCII) throws java.io.IOException
Exports the destinations to XML.- Parameters:
names
- the nameswrt
- the export destination. The writer is not closedencoding
- the encoding according to IANA conventionsonlyASCII
- codes above 127 will always be escaped with &#nn; iftrue
, whatever the encoding- Throws:
java.io.IOException
- on error
-
createDestinationArray
private static PdfArray createDestinationArray(java.lang.String value, PdfWriter writer)
-
escapeBinaryString
static java.lang.String escapeBinaryString(java.lang.String s)
-
unEscapeBinaryString
static java.lang.String unEscapeBinaryString(java.lang.String s)
-
endDocument
public void endDocument()
Description copied from interface:SimpleXMLDocHandler
Called after the document is parsed.- Specified by:
endDocument
in interfaceSimpleXMLDocHandler
-
endElement
public void endElement(java.lang.String tag)
Description copied from interface:SimpleXMLDocHandler
Called when an end tag is found.- Specified by:
endElement
in interfaceSimpleXMLDocHandler
- Parameters:
tag
- the tag name
-
startDocument
public void startDocument()
Description copied from interface:SimpleXMLDocHandler
Called when the document starts to be parsed.- Specified by:
startDocument
in interfaceSimpleXMLDocHandler
-
startElement
public void startElement(java.lang.String tag, java.util.HashMap h)
Description copied from interface:SimpleXMLDocHandler
Called when a start tag is found.- Specified by:
startElement
in interfaceSimpleXMLDocHandler
- Parameters:
tag
- the tag nameh
- the tag's attributes
-
text
public void text(java.lang.String str)
Description copied from interface:SimpleXMLDocHandler
Called when a text element is found.- Specified by:
text
in interfaceSimpleXMLDocHandler
- Parameters:
str
- the text element, probably a fragment.
-
-