Class RtfDestinationListTable
- java.lang.Object
-
- com.lowagie.text.rtf.parser.destinations.RtfDestination
-
- com.lowagie.text.rtf.parser.destinations.RtfDestinationListTable
-
public class RtfDestinationListTable extends RtfDestination
RtfDestinationListTable
handles data destined for the List Table destination- Since:
- 2.1.0
-
-
Field Summary
Fields Modifier and Type Field Description private int
currentLevel
private RtfListLevel
currentListLevel
private int
currentListMappingNumber
private int
currentSubGroupCount
private RtfImportMgr
importHeader
The RtfImportHeader to add List mappings to.private RtfList
newList
-
Fields inherited from class com.lowagie.text.rtf.parser.destinations.RtfDestination
lastCtrlWord, modified, rtfParser
-
-
Constructor Summary
Constructors Constructor Description RtfDestinationListTable()
RtfDestinationListTable(RtfParser parser)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
closeDestination()
Clean up when destination is closed.boolean
handleCharacter(int ch)
Handle text for this destinationboolean
handleCloseGroup()
Clean up when group is closed.boolean
handleControlWord(RtfCtrlWordData ctrlWordData)
Handle control word for this destinationboolean
handleOpenGroup()
Setup when group is opened.boolean
handleOpeningSubGroup()
Handle a new subgroup contained within this groupvoid
setParser(RtfParser parser)
Set the parser to use with the RtfDestination object.void
setToDefaults()
Method to set this object to the default values.-
Methods inherited from class com.lowagie.text.rtf.parser.destinations.RtfDestination
addListener, afterCharacter, afterCtrlWord, beforeCharacter, beforeCtrlWord, getNewTokeniserState, isModified, onCharacter, onCloseGroup, onCtrlWord, onOpenGroup, removeListener
-
-
-
-
Field Detail
-
importHeader
private RtfImportMgr importHeader
The RtfImportHeader to add List mappings to.
-
newList
private RtfList newList
-
currentLevel
private int currentLevel
-
currentListLevel
private RtfListLevel currentListLevel
-
currentListMappingNumber
private int currentListMappingNumber
-
currentSubGroupCount
private int currentSubGroupCount
-
-
Constructor Detail
-
RtfDestinationListTable
public RtfDestinationListTable()
-
RtfDestinationListTable
public RtfDestinationListTable(RtfParser parser)
-
-
Method Detail
-
setParser
public void setParser(RtfParser parser)
Description copied from class:RtfDestination
Set the parser to use with the RtfDestination object.- Overrides:
setParser
in classRtfDestination
- Parameters:
parser
- The RtfParser object.
-
handleOpeningSubGroup
public boolean handleOpeningSubGroup()
Description copied from class:RtfDestination
Handle a new subgroup contained within this group- Specified by:
handleOpeningSubGroup
in classRtfDestination
- Returns:
- true if handled, false if not handled
-
closeDestination
public boolean closeDestination()
Description copied from class:RtfDestination
Clean up when destination is closed.- Specified by:
closeDestination
in classRtfDestination
- Returns:
- true if handled, false if not handled
-
handleControlWord
public boolean handleControlWord(RtfCtrlWordData ctrlWordData)
Description copied from class:RtfDestination
Handle control word for this destination- Specified by:
handleControlWord
in classRtfDestination
- Parameters:
ctrlWordData
- The control word and parameter information object- Returns:
- true if handled, false if not handled
-
handleCloseGroup
public boolean handleCloseGroup()
Description copied from class:RtfDestination
Clean up when group is closed.- Specified by:
handleCloseGroup
in classRtfDestination
- Returns:
- true if handled, false if not handled
-
handleOpenGroup
public boolean handleOpenGroup()
Description copied from class:RtfDestination
Setup when group is opened.- Specified by:
handleOpenGroup
in classRtfDestination
- Returns:
- true if handled, false if not handled
-
handleCharacter
public boolean handleCharacter(int ch)
Description copied from class:RtfDestination
Handle text for this destination- Specified by:
handleCharacter
in classRtfDestination
- Returns:
- true if handled, false if not handled
-
setToDefaults
public void setToDefaults()
Description copied from class:RtfDestination
Method to set this object to the default values. Must be implemented in child class.- Specified by:
setToDefaults
in classRtfDestination
-
-