MCPcopy Create free account
hub / github.com/PCGen/pcgen / parseCommands

Method parseCommands

code/src/java/pcgen/system/Main.java:169–179  ·  view source on GitHub ↗

Initialize Main - must be called before any other getter can be used. @param argv the command line arguments to be parsed

(String[] argv)

Source from the content-addressed store, hash-verified

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 {

Callers 1

mainMethod · 0.95

Calls 2

isVerboseMethod · 0.95

Tested by

no test coverage detected