(File file)
| 145 | } |
| 146 | |
| 147 | private void executeFile(File file) throws IOException { |
| 148 | try { |
| 149 | executeRunner(runtime.newRunner().withSource( file )); |
| 150 | } catch (FileNotFoundException e) { |
| 151 | getOutputStream().println("File " + file.getName() + " not found"); |
| 152 | } |
| 153 | } |
| 154 | |
| 155 | private void showUsage() { |
| 156 | getOutputStream().println("usage: " + getBinaryName() + getParser().printExample(OptionHandlerFilter.ALL, null) + "\n"); |
no test coverage detected