JFlex
public final class DFA extends Object implements ErrorMessages
| Field Summary | |
|---|---|
| static int | NO_TARGET
The code for "no target state" in the transition table. |
| Constructor Summary | |
|---|---|
| DFA(int numLexStates, int numInp) | |
| Method Summary | |
|---|---|
| void | addTransition(int start, char input, int dest) |
| void | checkActions(LexScan scanner, LexParse parser) |
| String | dotFormat() |
| void | minimize() |
| void | printTable(boolean[][] equiv) |
| void | setAction(int state, Action stateAction) |
| void | setFinal(int state, boolean isFinalState) |
| void | setLexState(int lState, int trueState) |
| void | setPushback(int state, boolean isPushbackState) |
| String | toString() |
| void | writeDot(File file) |