use of com.sun.tools.ws.processor.model.jaxb.JAXBModel in project metro-jax-ws by eclipse-ee4j.
the class JAXBModelBuilder method bind.
protected void bind() {
S2JJAXBModel rawJaxbModel = schemaCompiler.bind();
if (rawJaxbModel == null)
throw new AbortException();
options.setCodeModel(rawJaxbModel.generateCode(null, errReceiver));
jaxbModel = new JAXBModel(rawJaxbModel);
jaxbModel.setGeneratedClassNames(_classNameAllocator.getJaxbGeneratedClasses());
}
Aggregations