mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Argument is ICDIStackFrame.
This commit is contained in:
parent
5fcd28b2fb
commit
634ee50f22
3 changed files with 6 additions and 6 deletions
|
@ -7,14 +7,14 @@
|
|||
package org.eclipse.cdt.debug.mi.core.cdi.model;
|
||||
|
||||
import org.eclipse.cdt.debug.core.cdi.model.ICDIArgumentObject;
|
||||
import org.eclipse.cdt.debug.core.cdi.model.ICDIStackFrame;
|
||||
import org.eclipse.cdt.debug.core.cdi.model.ICDITarget;
|
||||
import org.eclipse.cdt.debug.mi.core.cdi.model.*;
|
||||
|
||||
/**
|
||||
*/
|
||||
public class ArgumentObject extends VariableObject implements ICDIArgumentObject {
|
||||
|
||||
public ArgumentObject(ICDITarget target, String name, StackFrame frame, int pos, int depth) {
|
||||
public ArgumentObject(ICDITarget target, String name, ICDIStackFrame frame, int pos, int depth) {
|
||||
super(target, name, frame, pos, depth);
|
||||
}
|
||||
|
||||
|
|
|
@ -2,7 +2,6 @@ package org.eclipse.cdt.debug.mi.core.cdi.model;
|
|||
|
||||
import org.eclipse.cdt.debug.core.cdi.model.ICDIRegisterObject;
|
||||
import org.eclipse.cdt.debug.core.cdi.model.ICDITarget;
|
||||
import org.eclipse.cdt.debug.mi.core.cdi.model.*;
|
||||
|
||||
/**
|
||||
*/
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
*/
|
||||
package org.eclipse.cdt.debug.mi.core.cdi.model;
|
||||
|
||||
import org.eclipse.cdt.debug.core.cdi.model.ICDIStackFrame;
|
||||
import org.eclipse.cdt.debug.core.cdi.model.ICDITarget;
|
||||
import org.eclipse.cdt.debug.core.cdi.model.ICDIVariableObject;
|
||||
|
||||
|
@ -14,10 +15,10 @@ public class VariableObject extends CObject implements ICDIVariableObject {
|
|||
|
||||
String name;
|
||||
int position;
|
||||
StackFrame frame;
|
||||
ICDIStackFrame frame;
|
||||
int stackdepth;
|
||||
|
||||
public VariableObject(ICDITarget target, String n, StackFrame stack, int pos, int depth) {
|
||||
public VariableObject(ICDITarget target, String n, ICDIStackFrame stack, int pos, int depth) {
|
||||
super(target);
|
||||
name = n;
|
||||
frame = stack;
|
||||
|
@ -29,7 +30,7 @@ public class VariableObject extends CObject implements ICDIVariableObject {
|
|||
return target;
|
||||
}
|
||||
|
||||
public StackFrame getStackFrame() {
|
||||
public ICDIStackFrame getStackFrame() {
|
||||
return frame;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue