All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alibaba.jvm.sandbox.api.event.LineEvent Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
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