107108109110111112113114115
} public void addMethod(JavaMethod method) { if (hasMethod(method)) { throw new ModelException("model.uniqueness"); } methods.add(method); }
115116117118119120121122
for(InputSource jaxbBinding : externalBindings){ schemaCompiler.parseSchema(jaxbBinding); } } } catch (Exception e) { throw new ModelException(e); } }