/* */
/* 592 */ CtMethod wmethod = CtNewMethod.make(CtClass.voidType, wrapperName, writeParam, null, "{}", clazz);
/* 593 */ wmethod.setModifiers(mod);
/* 594 */ clazz.addMethod(wmethod);
/* */
/* 596 */ SignatureAttribute ai = (SignatureAttribute)field.getFieldInfo2().getAttribute("Signature");
/* 597 */ if (ai != null)
/* */ {
/* 599 */ MethodInfo wrapperInfo = wmethod.getMethodInfo2();
/* 600 */ SignatureAttribute methodAtt = new SignatureAttribute(wrapperInfo.getConstPool(), "(" + ai.getSignature() + ")V");
/* 601 */ wrapperInfo.addAttribute(methodAtt);
/* */ }
/* */
/* 604 */ return wmethod;
/* */ }