/* 209 */ int lenmppmarr = mppmarr != null ? mppmarr.length : 0;
/* 210 */ for (int j = 0; j < lenmppmarr; j++)
/* */ {
/* 212 */ listInputs.addAll(xst.getVARList((XSComplexTypeDefinition)xsmodel.getTypeDefinition(opname, typeNamespace), xsmodel, false));
/* */ }
/* 214 */ JavaWriter jw = new JavaWriter();
/* 215 */ jw.createJavaFile(location, classname, this.packageName, listInputs, null, null, false, null);
/* 216 */ classname = plainClassName + "_" + opname + "_ResponseStruct";
/* 217 */ XSTypeDefinition xt = xsmodel.getTypeDefinition(opname + "Response", typeNamespace);
/* 218 */ List listOutputs = new ArrayList();
/* 219 */ if ((xt instanceof XSSimpleTypeDefinition))
/* */ {
/* 221 */ listOutputs.add(new XSDTypeToJava.VAR("result", xt.getName(), false));
/* */ }
/* 223 */ else listOutputs.addAll(xst.getVARList((XSComplexTypeDefinition)xt, xsmodel, false));
/* 224 */ jw.createJavaFile(location, classname, this.packageName, listOutputs, null, null, false, null);
/* */ }
/* */ }