Uses of Interface
com.rtfparserkit.parser.IRtfListener
-
Packages that use IRtfListener Package Description com.rtfparserkit.converter.text com.rtfparserkit.parser com.rtfparserkit.parser.raw com.rtfparserkit.parser.standard com.rtfparserkit.utils -
-
Uses of IRtfListener in com.rtfparserkit.converter.text
Classes in com.rtfparserkit.converter.text that implement IRtfListener Modifier and Type Class Description classAbstractTextConverterThis class implements the core of a trivial RTF to text converter.classStreamTextConverterThis class implements a trivial RTF to text converter.classStringTextConverterThis class implements a trivial RTF to text converter. -
Uses of IRtfListener in com.rtfparserkit.parser
Classes in com.rtfparserkit.parser that implement IRtfListener Modifier and Type Class Description classRtfListenerAdaptorThis adaptor class is provided as a convenience for users of the IRtfListener interface.Methods in com.rtfparserkit.parser with parameters of type IRtfListener Modifier and Type Method Description voidIRtfParser. parse(IRtfSource source, IRtfListener listener)At the point the parser is constructed, a listener will have been supplied by the caller. -
Uses of IRtfListener in com.rtfparserkit.parser.raw
Fields in com.rtfparserkit.parser.raw declared as IRtfListener Modifier and Type Field Description private IRtfListenerRawRtfParser. listenerMethods in com.rtfparserkit.parser.raw with parameters of type IRtfListener Modifier and Type Method Description voidRawRtfParser. parse(IRtfSource source, IRtfListener listener)Parse RTF data from an input source. -
Uses of IRtfListener in com.rtfparserkit.parser.standard
Classes in com.rtfparserkit.parser.standard that implement IRtfListener Modifier and Type Class Description classStandardRtfParserThis class builds on the RawRtfParser to provide a parser which can deal with character encodings and Unicode.Fields in com.rtfparserkit.parser.standard declared as IRtfListener Modifier and Type Field Description private IRtfListenerDefaultEventHandler. listenerMethods in com.rtfparserkit.parser.standard with parameters of type IRtfListener Modifier and Type Method Description voidBinaryBytesEvent. fire(IRtfListener listener)Pass the event to the listener.voidCommandEvent. fire(IRtfListener listener)Pass the event to the listener.voidDocumentEndEvent. fire(IRtfListener listener)Pass the event to the listener.voidDocumentStartEvent. fire(IRtfListener listener)Pass the event to the listener.voidGroupEndEvent. fire(IRtfListener listener)Pass the event to the listener.voidGroupStartEvent. fire(IRtfListener listener)Pass the event to the listener.voidIParserEvent. fire(IRtfListener listener)Pass this event to the listener.voidStringEvent. fire(IRtfListener listener)Pass the event to the listener.voidStandardRtfParser. parse(IRtfSource source, IRtfListener listener)Main entry point: parse RTF data from the input stream, and pass events based on the RTF content to the listener.Constructors in com.rtfparserkit.parser.standard with parameters of type IRtfListener Constructor Description DefaultEventHandler(IRtfListener listener)Constructor. -
Uses of IRtfListener in com.rtfparserkit.utils
Classes in com.rtfparserkit.utils that implement IRtfListener Modifier and Type Class Description classRtfDumpListenerTrivial class used to convert events generated by an RTF parser into an XML document.
-