(String[] args, ToolRuntime runtime)
| 118 | runtime.exit(tool.runTool(cli)); |
| 119 | } |
| 120 | |
| 121 | public static Tool findTool(String[] args, ToolRuntime runtime) throws Exception { |
| 122 | String toolType = args[0].trim().toLowerCase(Locale.ROOT); |
| 123 | return newTool(toolType, runtime); |
| 124 | } |
| 125 | |
| 126 | public static CommandLine parseCmdLine(Tool tool, String[] args) throws IOException { |