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:
parent
7de234ff77
commit
2644a0923e
1 changed files with 9 additions and 0 deletions
|
@ -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.
|
||||
*
|
||||
|
|
Loading…
Add table
Reference in a new issue