Interface PropertyAccess
-
public interface PropertyAccess
Describes 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 Getter
getGetter()
Obtain the delegate for getting values for the described persistent propertyPropertyAccessStrategy
getPropertyAccessStrategy()
Access to the PropertyAccessStrategy that created this PropertyAccessSetter
getSetter()
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
-
-