?? fieldhandled.java
字號:
package org.hibernate.bytecode.javassist;/** * Interface introduced to the enhanced class in order to be able to * inject a {@link FieldHandler} to define the interception behavior. * * @author Muga Nishizawa */public interface FieldHandled { /** * Inject the field interception handler to be used. * * @param handler The field interception handler. */ public void setFieldHandler(FieldHandler handler); /** * Access to the current field interception handler. * * @return The current field interception handler. */ public FieldHandler getFieldHandler();}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -