类 PropertyAccessBasicImpl
- java.lang.Object
-
- org.hibernate.property.access.internal.PropertyAccessBasicImpl
-
- 所有已实现的接口:
PropertyAccess
public class PropertyAccessBasicImpl extends Object implements PropertyAccess
PropertyAccessor for accessing the wrapped property via get/set pair, which may be nonpublic.- 作者:
- Steve Ebersole
- 另请参阅:
PropertyAccessStrategyBasicImpl
-
-
构造器概要
构造器 构造器 说明 PropertyAccessBasicImpl(PropertyAccessStrategyBasicImpl strategy, Class containerJavaType, String propertyName)
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 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
-
-
-
构造器详细资料
-
PropertyAccessBasicImpl
public PropertyAccessBasicImpl(PropertyAccessStrategyBasicImpl strategy, Class containerJavaType, String propertyName)
-
-
方法详细资料
-
getPropertyAccessStrategy
public PropertyAccessStrategy getPropertyAccessStrategy()
从接口复制的说明:PropertyAccessAccess to the PropertyAccessStrategy that created this PropertyAccess- 指定者:
getPropertyAccessStrategy在接口中PropertyAccess- 返回:
- The PropertyAccessStrategy that created this PropertyAccess
-
getGetter
public Getter getGetter()
从接口复制的说明:PropertyAccessObtain the delegate for getting values for the described persistent property- 指定者:
getGetter在接口中PropertyAccess- 返回:
- The property getter
-
getSetter
public Setter getSetter()
从接口复制的说明:PropertyAccessObtain the delegate for setting values for the described persistent property- 指定者:
getSetter在接口中PropertyAccess- 返回:
- The property setter
-
-