53545556575859
* * @return * 0 if the tool runs successfully. */ public static int doMain(String[] args) throws Throwable { return new WsgenTool(System.out).run(args) ? 0 : 1; }
4445464748495051
return tool.run(args); } @Override public boolean wsgen(OutputStream logStream, Container container, String[] args) { WsgenTool tool = new WsgenTool(logStream, container); return tool.run(args); }
4546474849505152
54555657585960