/* 39 */ String property = TypeUtils.upperFirst(this.callback.getPropertyName(getClassType(), name));
/* 40 */ if (property != null)
/* */ {
/* 42 */ CodeEmitter e = begin_method(1, new Signature("get" + property, type, Constants.TYPES_EMPTY), null, null);
/* */
/* 48 */ e.load_this();
/* 49 */ e.getfield(name);
/* 50 */ e.return_value();
/* 51 */ e.end_method();
/* */
/* 53 */ e = begin_method(1, new Signature("set" + property, Type.VOID_TYPE, new Type[] { type }), null, null);