Initialize Main - must be called before any other getter can be used. @param argv the command line arguments to be parsed
(String[] argv)
| 167 | * @param argv the command line arguments to be parsed |
| 168 | */ |
| 169 | private static CommandLineArguments parseCommands(String[] argv) |
| 170 | { |
| 171 | CommandLineArguments result = new CommandLineArguments(argv); |
| 172 | |
| 173 | if (result.isVerbose()) |
| 174 | { |
| 175 | Logging.setCurrentLoggingLevel(Logging.DEBUG); |
| 176 | } |
| 177 | |
| 178 | return result; |
| 179 | } |
| 180 | |
| 181 | private static void startupWithGUI() |
| 182 | { |
no test coverage detected