站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > Hibernate 3.2.4 正式版 API 英文文档

FieldHandled (Hibernate API Documentation) - Hibernate 3.2.4 正式版 API 英文文档


org.hibernate.bytecode.javassist
Interface FieldHandled


public interface FieldHandled

Interface introduced to the enhanced class in order to be able to inject a FieldHandler to define the interception behavior.

Author:
Muga Nishizawa

Method Summary
 FieldHandler getFieldHandler()
          Access to the current field interception handler.
 void setFieldHandler(FieldHandler handler)
          Inject the field interception handler to be used.
 

Method Detail

setFieldHandler

public void setFieldHandler(FieldHandler handler)
Inject the field interception handler to be used.

Parameters:
handler - The field interception handler.

getFieldHandler

public FieldHandler getFieldHandler()
Access to the current field interception handler.

Returns:
The current field interception handler.