Interface PropertyAccess
-
public interface PropertyAccessDescribes access to a particular persistent property in terms of getting and setting values. Instances are obtained fromPropertyAccessStrategy
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GettergetGetter()Obtain the delegate for getting values for the described persistent propertyPropertyAccessStrategygetPropertyAccessStrategy()Access to the PropertyAccessStrategy that created this PropertyAccessSettergetSetter()Obtain the delegate for setting values for the described persistent property
-
-
-
Method Detail
-
getPropertyAccessStrategy
PropertyAccessStrategy getPropertyAccessStrategy()
Access to the PropertyAccessStrategy that created this PropertyAccess- Returns:
- The PropertyAccessStrategy that created this PropertyAccess
-
getGetter
Getter getGetter()
Obtain the delegate for getting values for the described persistent property- Returns:
- The property getter
-
getSetter
Setter getSetter()
Obtain the delegate for setting values for the described persistent property- Returns:
- The property setter
-
-