com.lowagie.text.rtf.parser.destinations
public final class RtfDestinationMgr extends java.lang.Object
RtfDestinationMgr
manages destination objects for the parserModifier and Type | Field and Description |
---|---|
static java.lang.String |
DESTINATION_DOCUMENT
String representation of document destination.
|
static java.lang.String |
DESTINATION_NULL
String representation of null destination.
|
private static java.util.HashMap |
destinationObjects
Destination objects.
|
private static java.util.HashMap |
destinations
CtrlWord <-> Destination map object.
|
private static boolean |
ignoreUnknownDestinations |
private static RtfDestinationMgr |
instance |
private static java.lang.Object |
lock |
private static RtfParser |
rtfParser |
Modifier | Constructor and Description |
---|---|
private |
RtfDestinationMgr()
Hidden default constructor becuase
|
Modifier and Type | Method and Description |
---|---|
static boolean |
addDestination(java.lang.String destination,
java.lang.Object[] args) |
static boolean |
addListener(java.lang.String destination,
RtfDestinationListener listener)
Adds a
RtfDestinationListener to the appropriate RtfDestination . |
static RtfDestination |
getDestination(java.lang.String destination) |
static RtfDestinationMgr |
getInstance() |
static RtfDestinationMgr |
getInstance(RtfParser parser) |
static boolean |
removeListener(java.lang.String destination,
RtfDestinationListener listener)
Removes a
RtfDestinationListener from the appropriate RtfDestination . |
static void |
setParser(RtfParser parser) |
private static RtfDestinationMgr instance
private static java.lang.Object lock
private static java.util.HashMap destinations
private static java.util.HashMap destinationObjects
private static boolean ignoreUnknownDestinations
private static RtfParser rtfParser
public static final java.lang.String DESTINATION_NULL
public static final java.lang.String DESTINATION_DOCUMENT
public static void setParser(RtfParser parser)
public static RtfDestinationMgr getInstance()
public static RtfDestinationMgr getInstance(RtfParser parser)
public static RtfDestination getDestination(java.lang.String destination)
public static boolean addDestination(java.lang.String destination, java.lang.Object[] args)
public static boolean addListener(java.lang.String destination, RtfDestinationListener listener)
RtfDestinationListener
to the appropriate RtfDestination
.destination
- the destination string for the listenerlistener
- the new RtfDestinationListener.public static boolean removeListener(java.lang.String destination, RtfDestinationListener listener)
RtfDestinationListener
from the appropriate RtfDestination
.destination
- the destination string for the listenerlistener
- the RtfCtrlWordListener that has to be removed.