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

prompto.debug.stack.ClientStackFrame Maven / Gradle / Ivy

The newest version!
package prompto.debug.stack;

import java.util.Collection;

import prompto.debug.IDebugger;
import prompto.debug.variable.IVariable;
import prompto.debug.worker.IWorker;

public class ClientStackFrame extends LeanStackFrame {

	IDebugger debugger;
	IWorker worker;
	
	public ClientStackFrame(IDebugger debugger, IWorker worker, LeanStackFrame frame) {
		super(frame);
		this.debugger = debugger;
		this.worker = worker;
	}
	
	@Override
	public Collection getVariables() {
		return debugger.getVariables(worker, this);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy