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

📄 instrumentationevent.java

📁 该工具也是用于字节码插桩
💻 JAVA
字号:
/* * InstrumentationEvent.java * * Created on July 20, 2001, 7:09 AM * * See LICENSE file for license conditions. */package residue.events;/** * Event broadcast during instrumentation. * * @author  chowells * @version  */public class InstrumentationEvent{	private String name;	private int remaining;	    public InstrumentationEvent(String classname, int classesremaining)	{		name = classname;		remaining = classesremaining;    } // InstrumentationEvent		public String getClassName()	{		return name;	} // getClassName		public int getClassesRemaining()	{		return remaining;	} // getClassName} // class InstrumentationEvent

⌨️ 快捷键说明

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