logger.debug("Method for field '" + fieldName + "' being defined for type " + definition);
}
{
FieldVisitor fv = cw.visitField(ACC_PRIVATE, fieldName + "_", definition, genericDefinition, null);
fv.visitEnd();
}
{
MethodVisitor mv = cw.visitMethod(ACC_PUBLIC, "set" + fieldName, "(" + definition + ")V",
genericDefinition == null ? null : "(" + genericDefinition + ")V", null);
mv.visitCode();