[
Date Prev][
Date Next][
Thread Prev][
Thread Next][
Date Index][
Thread Index]
[
List Home]
[cdt-patch] new methods in SharedLibraryManager
|
Index: ChangeLog
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.core/ChangeLog,v
retrieving revision 1.112
diff -u -r1.112 ChangeLog
--- ChangeLog 29 Jan 2003 02:58:22 -0000 1.112
+++ ChangeLog 29 Jan 2003 19:12:34 -0000
@@ -1,3 +1,10 @@
+2003-01-29 Alain Magloire
+
+ * src/org/eclipse/cdt/debug/core/cdi/model/ICDISharedLibraryManger.java (getSharedLibraryPaths):
+ New method.
+ (setSharedLibraryPaths): New method.
+ (setAutoLoadSymbols): New method.
+
2003-01-28 Alain Magloire
* src/org/eclipse/cdt/debug/core/cdi/model/ICDIThread.java (setCurrentFrame):
Index: src/org/eclipse/cdt/debug/core/cdi/ICDISharedLibraryManager.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDISharedLibraryManager.java,v
retrieving revision 1.3
diff -u -r1.3 ICDISharedLibraryManager.java
--- src/org/eclipse/cdt/debug/core/cdi/ICDISharedLibraryManager.java 27 Jan 2003 03:35:18 -0000 1.3
+++ src/org/eclipse/cdt/debug/core/cdi/ICDISharedLibraryManager.java 29 Jan 2003 19:12:34 -0000
@@ -40,4 +40,26 @@
*/
void loadSymbols() throws CDIException;
+ /**
+ * Automatically load the symbols.
+ * @throws CDIException
+ */
+ void setAutoLoadSymbols(boolean set) throws CDIException;
+
+ /**
+ * return the search paths for shared libraries.
+ *
+ * @return String[]
+ * @throws CDIException
+ */
+ String[] getSharedLibraryPaths() throws CDIException;
+
+ /**
+ * Reset the shared libs paths to libpaths.
+ * @param libpaths
+ * @throws CDIException
+ */
+ void setSharedLibraryPaths(String[] libpaths) throws CDIException;
+
+
}