mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 22:52:11 +02:00
Add the corresponding xxDescriptor to the variable interface.
This commit is contained in:
parent
08da96c392
commit
57c79fa828
5 changed files with 5 additions and 19 deletions
|
@ -17,5 +17,5 @@ package org.eclipse.cdt.debug.core.cdi.model;
|
||||||
*
|
*
|
||||||
* @since Jul 22, 2002
|
* @since Jul 22, 2002
|
||||||
*/
|
*/
|
||||||
public interface ICDIArgument extends ICDIVariable, ICDIArgumentDescriptor {
|
public interface ICDIArgument extends ICDILocalVariable, ICDIArgumentDescriptor {
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,6 +14,6 @@ package org.eclipse.cdt.debug.core.cdi.model;
|
||||||
/**
|
/**
|
||||||
* ICDIGlobalVariable
|
* ICDIGlobalVariable
|
||||||
*/
|
*/
|
||||||
public interface ICDIGlobalVariable extends ICDIVariable {
|
public interface ICDIGlobalVariable extends ICDIVariable, ICDIGlobalVariableDescriptor {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,16 +11,9 @@
|
||||||
|
|
||||||
package org.eclipse.cdt.debug.core.cdi.model;
|
package org.eclipse.cdt.debug.core.cdi.model;
|
||||||
|
|
||||||
import org.eclipse.cdt.debug.core.cdi.CDIException;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ICDILocalVariable
|
* ICDILocalVariable
|
||||||
*/
|
*/
|
||||||
public interface ICDILocalVariable extends ICDIVariable {
|
public interface ICDILocalVariable extends ICDIVariable, ICDILocalVariableDescriptor {
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* @return ICDIStackFrame
|
|
||||||
*/
|
|
||||||
ICDIStackFrame getStackFrame() throws CDIException;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,15 +11,9 @@
|
||||||
|
|
||||||
package org.eclipse.cdt.debug.core.cdi.model;
|
package org.eclipse.cdt.debug.core.cdi.model;
|
||||||
|
|
||||||
import org.eclipse.cdt.debug.core.cdi.CDIException;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ICDIThreadStorage
|
* ICDIThreadStorage
|
||||||
*/
|
*/
|
||||||
public interface ICDIThreadStorage extends ICDIVariable {
|
public interface ICDIThreadStorage extends ICDIVariable, ICDIThreadStorageDescriptor {
|
||||||
|
|
||||||
/**
|
|
||||||
* @return ICDIThread
|
|
||||||
*/
|
|
||||||
ICDIThread getThread() throws CDIException;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,8 +16,7 @@ import org.eclipse.cdt.debug.core.cdi.CDIException;
|
||||||
/**
|
/**
|
||||||
* ICDIThreadStorageDescriptor
|
* ICDIThreadStorageDescriptor
|
||||||
*/
|
*/
|
||||||
public interface ICDIThreadStorageDescriptor extends
|
public interface ICDIThreadStorageDescriptor extends ICDIVariableDescriptor {
|
||||||
ICDIVariableDescriptor {
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return the thread.
|
* Return the thread.
|
||||||
|
|
Loading…
Add table
Reference in a new issue