*
*/
public class Java2WSDL {
public static void main(String[] args) {
Java2WSDLCommandLineOptionParser commandLineOptionParser = new Java2WSDLCommandLineOptionParser(
args);
// validate the arguments
validateCommandLineOptions(commandLineOptionParser);
try {
new Java2WSDLCodegenEngine(commandLineOptionParser.getAllOptions()).generate();
} catch (Exception e) {
System.out.println("An error occured while generating code" + e.getMessage());
}
}