/* 197 */ xst.setPackageName(this.packageName);
/* 198 */ ServiceEndpointMethodMapping[] mapArr = seim.getServiceEndpointMethodMappings();
/* 199 */ int len = mapArr != null ? mapArr.length : 0;
/* 200 */ for (int i = 0; i < len; i++)
/* */ {
/* 202 */ ServiceEndpointMethodMapping mm = mapArr[i];
/* 203 */ String opname = mm.getJavaMethodName();
/* 204 */ String sei = seim.getServiceEndpointInterface();
/* 205 */ String plainClassName = WSDLUtils.getJustClassName(sei);
/* 206 */ String classname = plainClassName + "_" + opname + "_RequestStruct";
/* 207 */ List listInputs = new ArrayList();
/* 208 */ MethodParamPartsMapping[] mppmarr = mm.getMethodParamPartsMappings();
/* 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));
/* */ }