1
0
Fork 0
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:
Alain Magloire 2004-11-01 16:54:34 +00:00
parent 08da96c392
commit 57c79fa828
5 changed files with 5 additions and 19 deletions

View file

@ -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 {
} }

View file

@ -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 {
} }

View file

@ -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;
} }

View file

@ -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;
} }

View file

@ -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.