KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > beaver > comp > run > Options


1 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2  * This file is part of Beaver Parser Generator. *
3  * Copyright (C) 2003,2004 Alexander Demenchuk <alder@softanvil.com>. *
4  * All rights reserved. *
5  * See the file "LICENSE" for the terms and conditions for copying, *
6  * distribution and modification of Beaver. *
7  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

8
9 package beaver.comp.run;
10
11 import java.io.File JavaDoc;
12
13 public class Options
14 {
15     public boolean exp_parsing_tables;
16     public boolean no_output;
17     public boolean terminal_names;
18     public boolean export_terminals;
19     public boolean no_compression;
20     public boolean use_switch;
21     public boolean name_action_classes;
22     public boolean report_actions;
23     public boolean sort_terminals;
24     public File JavaDoc dest_dir;
25 }
Popular Tags