[
Date Prev][
Date Next][
Thread Prev][
Thread Next][
Date Index][
Thread Index]
[
List Home]
[cdt-patch] ICDIIntegerValue
|
Index: ChangeLog
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.core/ChangeLog,v
retrieving revision 1.191
diff -u -r1.191 ChangeLog
--- ChangeLog 29 May 2003 19:18:51 -0000 1.191
+++ ChangeLog 29 May 2003 20:51:49 -0000
@@ -1,3 +1,11 @@
+2003-05-29 Alain Magloire
+
+ * src/org/eclipse/cdt/debug/core/cdi/model/type/ICDIIntegralValue.java:
+ public long longValue() throws CDIException;
+ public int intValue() throws CDIException;
+ public short shortValue() throws CDIException;
+ public int byteValue() throws CDIException;
+
2003-05-29 Mikhail Khodjaiants
Added new methods to ICVariable to vizualize arrays and structures based
on the new CDI types.
Index: src/org/eclipse/cdt/debug/core/cdi/model/type/ICDIIntegralValue.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/type/ICDIIntegralValue.java,v
retrieving revision 1.1
diff -u -r1.1 ICDIIntegralValue.java
--- src/org/eclipse/cdt/debug/core/cdi/model/type/ICDIIntegralValue.java 23 May 2003 05:12:42 -0000 1.1
+++ src/org/eclipse/cdt/debug/core/cdi/model/type/ICDIIntegralValue.java 29 May 2003 20:51:49 -0000
@@ -6,6 +6,7 @@
package org.eclipse.cdt.debug.core.cdi.model.type;
+import org.eclipse.cdt.debug.core.cdi.CDIException;
import org.eclipse.cdt.debug.core.cdi.model.ICDIValue;
@@ -17,5 +18,12 @@
*/
public interface ICDIIntegralValue extends ICDIValue {
- // Implement type conversion here
+ public long longValue() throws CDIException;
+
+ public int intValue() throws CDIException;
+
+ public short shortValue() throws CDIException;
+
+ public int byteValue() throws CDIException;
+
}