1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-05 16:56:04 +02:00

getType() new method.

This commit is contained in:
Alain Magloire 2003-05-26 18:46:13 +00:00
parent 7de234ff77
commit 2644a0923e

View file

@ -7,6 +7,7 @@
package org.eclipse.cdt.debug.core.cdi.model;
import org.eclipse.cdt.debug.core.cdi.CDIException;
import org.eclipse.cdt.debug.core.cdi.model.type.ICDIType;
/**
*
@ -43,6 +44,14 @@ public interface ICDIVariable extends ICDIVariableObject {
*/
String getTypeName() throws CDIException;
/**
* Returns the type of data this variable is declared.
*
* @return the type of data this variable is declared
* @throws CDIException if this method fails. Reasons include:
*/
ICDIType getType() throws CDIException;
/**
* Returns the value of this variable.
*