Mark verbose_dfa and force_atn with @Parameter

This commit is contained in:
Sam Harwell 2012-12-01 15:29:42 -06:00
parent ed8f980368
commit 5ed1a6aebf
1 changed files with 8 additions and 0 deletions

View File

@ -85,8 +85,16 @@ public class Antlr4Mojo extends AbstractMojo {
@Parameter(defaultValue = "false")
protected boolean atn;
/**
* add config set to DFA states
*/
@Parameter(defaultValue = "false")
protected boolean verbose_dfa;
/**
* use the ATN simulator for all predictions
*/
@Parameter(defaultValue = "false")
protected boolean force_atn;
/* --------------------------------------------------------------------