*/
public class Java2WSDL {
public static void main(String[] args) {
CommandLineOptionParser commandLineOptionParser = new CommandLineOptionParser(
args);
// validate the arguments
validateCommandLineOptions(commandLineOptionParser);
try {
new Java2WSDLCodegenEngine(commandLineOptionParser.getAllOptions()).generate();
} catch (CodeGenerationException e) {
System.out.println(CodegenMessages.getMessage("java2wsdl.generalError") + e.getMessage());
}
}