Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] Added the 'ICDISharedLibraryManager' interface

Index: ChangeLog
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.core/ChangeLog,v
retrieving revision 1.96
diff -u -r1.96 ChangeLog
--- ChangeLog 15 Jan 2003 21:51:28 -0000 1.96
+++ ChangeLog 15 Jan 2003 22:23:37 -0000
@@ -1,4 +1,8 @@
-2003-01-14 Mikhail Khodjaiants
+2003-01-15 Mikhail Khodjaiants
+ Added the 'ICDISharedLibraryManager' interface.
+ * ICDISharedLibraryManager.java
+
+2003-01-15 Mikhail Khodjaiants
  Added new methods to the 'ICDISharedLibrary' interface.
  * ICDISharedLibarary.java
 
Index: src/org/eclipse/cdt/debug/core/cdi/ICDISharedLibraryManager.java
===================================================================
RCS file: src/org/eclipse/cdt/debug/core/cdi/ICDISharedLibraryManager.java
diff -N src/org/eclipse/cdt/debug/core/cdi/ICDISharedLibraryManager.java
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ src/org/eclipse/cdt/debug/core/cdi/ICDISharedLibraryManager.java 15 Jan 2003 22:23:37 -0000
@@ -0,0 +1,25 @@
+/*
+ *(c) Copyright QNX Software Systems Ltd. 2002.
+ * All Rights Reserved.
+ *
+ */
+package org.eclipse.cdt.debug.core.cdi;
+
+import org.eclipse.cdt.debug.core.cdi.model.ICDISharedLibrary;
+
+/**
+ *
+ * Manages the collection of shared libraries in the debug session.
+ *
+ * @since: Jan 15, 2003
+ */
+public interface ICDISharedLibraryManager extends ICDISessionObject
+{
+ /**
+  * Returns the array of loaded shared libraries.
+  *
+  * @return the array of loaded shared libraries
+  * @throws CDIException on failure. Reasons include:
+  */
+ ICDISharedLibrary[] getSharedLibraries() throws CDIException;
+}

Back to the top