if (context.get(ToolConstants.CFG_NO_ADDRESS_BINDING) == null) {
//hard code to enabale jaxb extensions
args.add("-extension");
URL bindingFileUrl = getClass().getResource("W3CEPRJaxbBinding.xml");
InputSource ins = new InputSource(bindingFileUrl.toString());
schemaCompiler.parseSchema(ins);
}
if (context.get(ToolConstants.CFG_XJC_ARGS) != null) {
String xjcArgs = (String)context.get(ToolConstants.CFG_XJC_ARGS);
StringTokenizer tokenizer = new StringTokenizer(xjcArgs, ",", false);