Package org.jboss.ws.tools.interfaces

Examples of org.jboss.ws.tools.interfaces.SchemaCreatorIntf


/*     */   }
/*     */
/*     */   public void generateTypesForXSD(FaultMetaData fmd)
/*     */     throws IOException
/*     */   {
/* 157 */     SchemaCreatorIntf sc = this.javaToXSD.getSchemaCreator();
/*     */
/* 159 */     QName xmlType = fmd.getXmlType();
/* 160 */     if (!xmlType.getNamespaceURI().equals("http://www.w3.org/2001/XMLSchema"))
/* 161 */       generateType(xmlType, fmd.getJavaType(), null);
/*     */   }
View Full Code Here


/*     */     }
/* 367 */     WSDLTypes wsdlTypes = this.wsdl.getWsdlTypes();
/* 368 */     WSDLUtils.addSchemaModel(wsdlTypes, xmlType.getNamespaceURI(), xsModel);
/* 369 */     this.wsdl.registerNamespaceURI(xmlType.getNamespaceURI(), null);
/*     */
/* 372 */     SchemaCreatorIntf schemaCreator = this.javaToXSD.getSchemaCreator();
/* 373 */     mergeJavaWsdlMapping(schemaCreator.getJavaWsdlMapping());
/*     */
/* 375 */     HashMap map = schemaCreator.getCustomNamespaceMap();
/* 376 */     Set keys = map != null ? map.keySet() : null;
/* 377 */     Iterator iter = (keys != null) && (!keys.isEmpty()) ? keys.iterator() : null;
/* 378 */     while ((iter != null) && (iter.hasNext()))
/*     */     {
/* 380 */       String pref = (String)iter.next();
View Full Code Here

TOP

Related Classes of org.jboss.ws.tools.interfaces.SchemaCreatorIntf

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.