ETViewpointAdditions
ETViewpointOverview
A viewpoint is an adaptor that exposes a value derived from a represented object and handles reading and writing the properties of this value through -valueForProperty: and -setValue:forProperty: .
The derived value object can be read and write through -value and -setValue: .
Default
- - (NSArray *) propertyNames
Returns the property names exposed through by the viewpoint for -value .
- - (id) valueForProperty: (NSString *)key
Returns a value bound to a property of the object -value .
- - (BOOL) setValue: (id)value forProperty: (NSString *)key
Sets the value bound to a property of the object -value .