116117118119120121122123124125
Runtime.getRuntime().addShutdownHook(new Thread(new ShutdownHook(this))); _batchMode = false; _console = new SimpleConsole(consoleWriter, consoleReader); _config = new Configuration(); setOptions(); _config.processCommandline(args); }
144145146147148149150151152
{ this.decoder = decoderClass.newInstance(); } catch (InstantiationException | IllegalAccessException e) { throw new InitException("Unable to create decoder: " + decoderClass.getName(),e); } } }