Runs the tool with supplied arguments. Input and output streams are customizable for easier testing. @param in Input stream to read data (typically System.in). @param out Output of tool (typically System.out). @param err Error stream (typically System.err). @param args Non-null list of argument
(InputStream in, PrintStream out, PrintStream err, List<String> args)
| 38 | * @throws Exception Just like main(), tools may throw Exception. |
| 39 | */ |
| 40 | int run(InputStream in, PrintStream out, PrintStream err, List<String> args) throws Exception; |
| 41 | |
| 42 | /** |
| 43 | * Name of tool, to be used in listings. |
no outgoing calls