Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlain Magloire2003-01-29 19:13:09 +0000
committerAlain Magloire2003-01-29 19:13:09 +0000
commitfb06386753ffca3c00d4bdff81ac8fb6fbc2980c (patch)
tree46aaa34174ae660ec2040ac63403e6660c3f88f5
parentfbbb8e82c048fef7161a3ee28deb478c95c33d70 (diff)
downloadorg.eclipse.cdt-fb06386753ffca3c00d4bdff81ac8fb6fbc2980c.tar.gz
org.eclipse.cdt-fb06386753ffca3c00d4bdff81ac8fb6fbc2980c.tar.xz
org.eclipse.cdt-fb06386753ffca3c00d4bdff81ac8fb6fbc2980c.zip
New method set/getSharedLibraryManager.() and
setAutoLoadSymbols().
-rw-r--r--debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDISharedLibraryManager.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDISharedLibraryManager.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDISharedLibraryManager.java
index 2f15cdaca6d..87d17ad5f7c 100644
--- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDISharedLibraryManager.java
+++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDISharedLibraryManager.java
@@ -40,4 +40,26 @@ public interface ICDISharedLibraryManager extends ICDIManager {
*/
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;
+
+
}

Back to the top