Data Members



changeType an identifier for this kind of change, usually corresponds to the target class and property name

 id changeType;


getterMethod a selector of the target object that is used to retrieve the field value directly

 SEL getterMethod;


newValue the value of the target property to which it ought to be changed

 id newValue;


oldValue the value of the target property before the change will be applied

 id oldValue;


setterMethod a selector of the target that is used to set the property direcly

 SEL setterMethod;


target the object on which this change will be applied

 id target;


(Last Updated 8/31/2006)