+ ".onRadioGroupChanged(this, $1, $2); }", c);
c.addMethod(setValue);
// add behavior to RadioButton.setName method
CtMethod setName = c.getMethod("setName", "(Ljava/lang/String;)V");
setName.insertBefore(RadioButtonManager.class.getName() + ".beforeSetName(this, $1);");
// Add overrided RadioButton.onLoad method
CtMethod onLoad = CtMethod.make("protected void onLoad() { super.onLoad(); "
+ RadioButtonManager.class.getName() + ".onLoad(this); }", c);
c.addMethod(onLoad);