1 | public void setOutputfile(String outputFile) {↵ | | 1 | public void setOutputfile(String outputFile) {↵
|
2 | this.outputFile = outputFile;↵ | | 2 | this.outputFile = outputFile;↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * The javacc grammar file to process.↵ | | 5 | * The jjtree grammar file to process.↵
|
6 | * @param target the grammar file.↵ | | 6 | * @param targetFile the grammar file.↵
|
7 | */↵ | | 7 | */↵
|
8 | public void setTarget(File target) {↵ | | 8 | public void setTarget(File targetFile) {↵
|
9 | this.targetFile = target;↵ | | 9 | this.targetFile = targetFile;↵
|
10 | }↵ | | 10 | }↵
|
|
11 | /**↵ | | 11 | /**↵
|
12 | * The directory containing the JavaCC distribution.↵ | | 12 | * The directory containing the JavaCC distribution.↵
|
13 | * @param javaccHome the home directory.↵ | | 13 | * @param javaccHome the directory containing JavaCC.↵
|
14 | */↵ | | 14 | */↵
|
15 | public void setJavacchome(File javaccHome) {↵ | | 15 | public void setJavacchome(File javaccHome) {↵
|
16 | this.javaccHome = javaccHome;↵ | | 16 | this.javaccHome = javaccHome;↵
|
17 | }↵ | | 17 | }↵
|
|
18 | /**↵ | | 18 | /**↵
|
19 | * Constructor↵ | | 19 | * Constructor↵
|
20 | */↵ | | 20 | */↵
|
21 | public JJDoc() {↵ | | 21 | public JJTree() {↵
|
22 | cmdl.setVm(JavaEnvUtils.getJreExecutable("java")) | | 22 | cmdl.setVm(JavaEnvUtils.getJreExecutable("java"))
|