⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 instrumentationeventlistener.java

📁 该工具也是用于字节码插桩
💻 JAVA
字号:
/* * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -