prompto.debug.stack.IStackFrame Maven / Gradle / Ivy
The newest version!
package prompto.debug.stack;
import java.util.Collection;
import prompto.debug.variable.IVariable;
public interface IStackFrame {
String getFilePath();
int getIndex();
String getCategoryName();
String getMethodName();
String getMethodProto();
int getMethodLine();
int getStatementLine();
int getStartCharIndex();
int getEndCharIndex();
Collection extends IVariable> getVariables();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy