接口 Setter
-
- 所有超级接口:
Serializable
public interface Setter extends Serializable
The contract for setting a persistent property value into its container/owner- 作者:
- Gavin King, Steve Ebersole
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 MethodgetMethod()Optional operation (may returnnull)StringgetMethodName()Optional operation (may returnnull)voidset(Object target, Object value, SessionFactoryImplementor factory)Set the property value from the given instance
-
-
-
方法详细资料
-
set
void set(Object target, Object value, SessionFactoryImplementor factory)
Set the property value from the given instance- 参数:
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.- 抛出:
HibernateException
-
getMethodName
String getMethodName()
Optional operation (may returnnull)
-
getMethod
Method getMethod()
Optional operation (may returnnull)
-
-