01: package org.drools.eclipse.debug.core;
02:
03: import org.eclipse.jdt.internal.debug.core.model.JDIDebugTarget;
04: import org.eclipse.jdt.internal.debug.core.model.JDIThisVariable;
05:
06: import com.sun.jdi.ObjectReference;
07: import com.sun.jdi.Value;
08:
09: public class DroolsThisVariable extends JDIThisVariable {
10:
11: public DroolsThisVariable(JDIDebugTarget target,
12: ObjectReference object) {
13: super (target, object);
14: }
15:
16: protected Value retrieveValue() {
17: return super.retrieveValue();
18: }
19: }
|