| | public final class Arguments implements Callable<Integer> { |
| | @CommandLine.Option( |
| | + names = {"-a", "--all"}, |
| | + description = |
| | + "Concatenate files in directory before processing (${DEFAULT-VALUE}).", |
| | + defaultValue = "false" |
| | + ) |
| | + private boolean mAll; |
| | + |
| | + @CommandLine.Option( |
| | names = {"-d", "--debug"}, |
| | description = |
 |
| | ) |
| | private boolean mQuiet; |
| | + |
| | + @CommandLine.Option( |
| | + names = {"-t", "--theme"}, |
| | + description = |
| | + "Theme to use when exporting (${DEFAULT-VALUE}).", |
| | + paramLabel = "FILE", |
| | + defaultValue = "tarmes" |
| | + ) |
| | + private String mTheme; |
| | |
| | @CommandLine.Option( |