import org.eclipse.debug.core.model.IThread;
import org.eclipse.debug.core.model.IVariable;
-public class PHPStackFrame implements IStackFrame {
+public class PHPStackFrame extends PHPDebugElement implements IStackFrame {
private PHPThread thread;
private String file;
private String description;
public PHPStackFrame(PHPThread thread, String file, int line, int index, String desc, int modno) {
+ super (null);
this.lineNumber = line;
this.index = index;
this.file = file;
}
public PHPStackFrame(PHPThread thread, String file, int line, int index) {
+ super (null);
this.lineNumber = line;
this.index = index;
this.file = file;
getPHPDBGProxy().stop();
}
- public Object getAdapter(Class arg0) {
- if (arg0==PHPStackFrame.class)
- return this;
- else
- return null;
- }
-
public int getIndex() {
return index;
}