![JAR search and dependency download from the Maven repository](/logo.png)
com.alibaba.jvm.sandbox.api.event.LineEvent Maven / Gradle / Ivy
package com.alibaba.jvm.sandbox.api.event;
import static com.alibaba.jvm.sandbox.api.event.Event.Type.LINE;
/**
* 方法调用行事件
*
* @author [email protected]
*/
public class LineEvent extends InvokeEvent {
public final int lineNumber;
/**
* 构造调用事件
*
* @param processId 调用过程ID
* @param invokeId 调用ID
* @param lineNumber 代码行号
*/
public LineEvent(int processId, int invokeId, int lineNumber) {
super(processId, invokeId, LINE);
this.lineNumber = lineNumber;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy