if (!webServiceAnnotation.name().equals(""))
portTypeName = webServiceAnnotation.name();
portType = WSDLFactory.eINSTANCE.createPortType();
portType.setQName(new QName(wsdlDef.getQName().getNamespaceURI(),portTypeName));
portType.setUndefined(false);
wsdlDef.addPortType(portType);
typePortTypeMap.put(intrface,portType);
javax.jws.soap.SOAPBinding soapBindingAnnoation = intrface.getAnnotation(javax.jws.soap.SOAPBinding.class);
if (soapBindingAnnoation != null)
typeSoapBindingMap.put(intrface, soapBindingAnnoation);
}