/* */
/* */ private void appendSOAPBinding(StringBuilder buffer, WSDLInterface wsdlInterface, WSDLBindingOperation operation, WSDLBindingMessageReference[] inputs)
/* */ {
/* 537 */ String tns = this.wsdl.getTargetNamespace();
/* 538 */ WSDLInterfaceOperation interfaceOperation = wsdlInterface.getOperation(operation.getRef());
/* 539 */ WSDLInterfaceMessageReference reference = (inputs instanceof WSDLBindingOperationInput[]) ? interfaceOperation.getInputs()[0] : interfaceOperation.getOutputs()[0];
/* */
/* 542 */ StringBuilder bodyParts = new StringBuilder();
/* 543 */ if ("Document/Literal" == this.wsdlStyle)
/* */ {
/* 546 */ if (reference.getPartName() != null) {
/* 547 */ bodyParts.append(reference.getPartName());
/* */ }
/* */ }
/* */ else {
/* 551 */ for (WSDLRPCPart part : reference.getChildParts())
/* */ {
/* 553 */ if (bodyParts.length() > 0)
/* 554 */ bodyParts.append(" ");
/* 555 */ bodyParts.append(part.getName());
/* */ }