|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.lowagie.text.rtf.parser.RtfParserState
public class RtfParserState
The RtfParserState
contains the state information
for the parser. The current state object is pushed/popped in a stack
when a group change is made.
When an open group is encountered, the current state is copied and
then pushed on the top of the stack
When a close group is encountered, the current state is overwritten with
the popped value from the top of the stack
Field Summary | |
---|---|
java.lang.Object |
ctrlWordHandler
The current control word handler. |
java.util.Stack |
ctrlWordHandlers
Stack containing control word handlers. |
RtfDestination |
destination
The current destination. |
java.lang.Object |
groupHandler
The control word set as the group handler. |
boolean |
isExtendedDestination
Flag indicating if this is an extended destination \* control word |
boolean |
newGroup
Flag to indicate if last token was an open group token '{' |
int |
parserState
The parser state. |
RtfProperty |
properties
|
java.lang.StringBuffer |
text
The parsed value for the current group/control word. |
int |
tokeniserState
The tokeniser state. |
Constructor Summary | |
---|---|
RtfParserState()
Default constructor |
|
RtfParserState(RtfParserState orig)
Copy constructor |
Method Summary |
---|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public int parserState
public int tokeniserState
public java.lang.Object groupHandler
public java.lang.StringBuffer text
public java.util.Stack ctrlWordHandlers
public java.lang.Object ctrlWordHandler
public RtfDestination destination
public boolean isExtendedDestination
public boolean newGroup
public RtfProperty properties
Constructor Detail |
---|
public RtfParserState()
public RtfParserState(RtfParserState orig)
orig
- The object to copy
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |