instrumentationeventlistener.java
来自「该工具也是用于字节码插桩」· Java 代码 · 共 36 行
JAVA
36 行
/* * InstrumentationEventListener.java * * Created on July 20, 2001, 7:05 AM * * See LICENSE file for license conditions. */package residue.events;/** * Event listener for events broadcast by instrumentation * processes. * * @author chowells * @version */public interface InstrumentationEventListener{ /** * This method is called when the whole instrumentation process is begun. */ public abstract void instrumentationStarted(InstrumentationEvent e); /** * This method is called when the whole instrumentation process is done. */ public abstract void instrumentationFinished(InstrumentationEvent e); /** * This method is called when instrumentation of a class has begun. */ public abstract void classStarted(InstrumentationEvent e); } // interface InstrumentationEventListener
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?