method = dc.method(mods, method.type(), setterName);
method.javadoc().append(doc);
method.param(mtype, "value");
JFieldRef fr = JExpr.ref(fieldName);
method.body().assign(fr, JExpr.ref("value"));
method = dc.method(mods, method.type(), "unset" + fo.getPropertyInfo().getName(true));
method.body().assign(fr, JExpr._null());