return variables;
}
+ public IVariable findVariable(String s) throws DebugException {
+ if (this.hasVariables()) {
+ String name="$"+s;
+ for(int i= 0; i < variables.length; i++) {
+ String n= variables[i].getName();
+ if((variables[i].getName()).equals(name))
+ return variables[i];
+ }
+ }
+ return null;
+ }
+
public boolean hasVariables() throws DebugException {
if (variables == null) {
return false;
}
public Object getAdapter(Class arg0) {
- return null;
+ if (arg0==PHPStackFrame.class)
+ return this;
+ else
+ return null;
}
public int getIndex() {