接口 PropertyAccess
-
- 所有已知实现类:
PropertyAccessBasicImpl,PropertyAccessEmbeddedImpl,PropertyAccessEnhancedImpl,PropertyAccessFieldImpl,PropertyAccessMapImpl,PropertyAccessMixedImpl
public interface PropertyAccessDescribes access to a particular persistent property in terms of getting and setting values. Instances are obtained fromPropertyAccessStrategy- 作者:
- Steve Ebersole, Gavin King
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 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
-
-
-
方法详细资料
-
getPropertyAccessStrategy
PropertyAccessStrategy getPropertyAccessStrategy()
Access to the PropertyAccessStrategy that created this PropertyAccess- 返回:
- The PropertyAccessStrategy that created this PropertyAccess
-
getGetter
Getter getGetter()
Obtain the delegate for getting values for the described persistent property- 返回:
- The property getter
-
getSetter
Setter getSetter()
Obtain the delegate for setting values for the described persistent property- 返回:
- The property setter
-
-