setter.java

来自「一个Java持久层类库」· Java 代码 · 共 34 行

JAVA
34
字号
//$Id: Setter.java 5685 2005-02-12 07:19:50Z steveebersole $package org.hibernate.property;import java.io.Serializable;import java.lang.reflect.Method;import org.hibernate.HibernateException;import org.hibernate.engine.SessionFactoryImplementor;/** * Sets values to a particular property. *  * @author Gavin King */public interface Setter extends Serializable {	/**	 * Set the property value from the given instance	 *	 * @param target The instance upon which to set the given value.	 * @param value The value to be set on the target.	 * @param factory The session factory from which this request originated.	 * @throws HibernateException	 */	public void set(Object target, Object value, SessionFactoryImplementor factory) throws HibernateException;	/**	 * Optional operation (return null)	 */	public String getMethodName();	/**	 * Optional operation (return null)	 */	public Method getMethod();}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?