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

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 getVariables();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy