Skip to content
Snippets Groups Projects
Commit 371e1e9b authored by Michael Leuschel's avatar Michael Leuschel
Browse files

add stub for -verbose flag

parent 14990779
No related branches found
No related tags found
No related merge requests found
...@@ -15,6 +15,7 @@ import org.apache.commons.cli.ParseException; ...@@ -15,6 +15,7 @@ import org.apache.commons.cli.ParseException;
public class TLA2B implements TranslationGlobals { public class TLA2B implements TranslationGlobals {
public final static String VERSION = "version"; public final static String VERSION = "version";
public final static String VERBOSE = "verbose";
private String mainFile; private String mainFile;
...@@ -82,6 +83,7 @@ public class TLA2B implements TranslationGlobals { ...@@ -82,6 +83,7 @@ public class TLA2B implements TranslationGlobals {
private static Options getCommandlineOptions() { private static Options getCommandlineOptions() {
Options options = new Options(); Options options = new Options();
options.addOption(VERSION, false, "prints the current version of TLA2B"); options.addOption(VERSION, false, "prints the current version of TLA2B");
options.addOption(VERBOSE, false, "makes output more verbose (not used yet)");
Option config = Option.builder("config") Option config = Option.builder("config")
.argName("file") .argName("file")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment