类 EnhancedSetterImpl
- java.lang.Object
-
- org.hibernate.property.access.spi.SetterFieldImpl
-
- org.hibernate.property.access.spi.EnhancedSetterImpl
-
- 所有已实现的接口:
Serializable,Setter
public class EnhancedSetterImpl extends SetterFieldImpl
A specialized Setter implementation for handling setting values into a bytecode-enhanced Class. The reason we need specialized handling is to render the fact that we need to account for certain enhancement features during the setting process.- 作者:
- Steve Ebersole, Luis Barreiro
- 另请参阅:
- 序列化表格
-
-
构造器概要
构造器 构造器 说明 EnhancedSetterImpl(Class containerClass, String propertyName, Field field)
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 voidset(Object target, Object value, SessionFactoryImplementor factory)Set the property value from the given instance-
从类继承的方法 org.hibernate.property.access.spi.SetterFieldImpl
getMethod, getMethodName
-
-
-
-
方法详细资料
-
set
public void set(Object target, Object value, SessionFactoryImplementor factory)
从接口复制的说明:SetterSet the property value from the given instance- 指定者:
set在接口中Setter- 覆盖:
set在类中SetterFieldImpl- 参数:
target- The instance upon which to set the given value.value- The value to be set on the target.factory- The session factory from which this request originated.
-
-