Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] CDI changes

Index: ChangeLog
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.core/ChangeLog,v
retrieving revision 1.186
diff -u -r1.186 ChangeLog
--- ChangeLog	23 May 2003 05:12:54 -0000	1.186
+++ ChangeLog	23 May 2003 15:47:56 -0000
@@ -1,5 +1,10 @@
 2003-05-23 Alain Magloire
 
+	* src/org/eclipse/cdt/debug/core/cdi/model/type/ICDIType.java: extends
+	ICDIObject.
+
+2003-05-23 Alain Magloire
+
 	First draft of the implementing the types, org.eclipse.cdt.debug.core.cdi.model.type.*
 	in the CDI interface.
 
Index: src/org/eclipse/cdt/debug/core/cdi/model/type/ICDIType.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/type/ICDIType.java,v
retrieving revision 1.1
diff -u -r1.1 ICDIType.java
--- src/org/eclipse/cdt/debug/core/cdi/model/type/ICDIType.java	23 May 2003 05:12:42 -0000	1.1
+++ src/org/eclipse/cdt/debug/core/cdi/model/type/ICDIType.java	23 May 2003 15:47:56 -0000
@@ -6,6 +6,8 @@
 
 package org.eclipse.cdt.debug.core.cdi.model.type;
 
+import org.eclipse.cdt.debug.core.cdi.model.ICDIObject;
+
 
 /**
  * 
@@ -13,7 +15,7 @@
  * 
  * @since Apr 15, 2003
  */
-public interface ICDIType {
+public interface ICDIType extends ICDIObject {
 
 	/**
 	 * Returns the name.



Back to the top