diff --git a/debug/org.eclipse.cdt.debug.core/ChangeLog b/debug/org.eclipse.cdt.debug.core/ChangeLog index 990ba2b5eb7..535a455a41d 100644 --- a/debug/org.eclipse.cdt.debug.core/ChangeLog +++ b/debug/org.eclipse.cdt.debug.core/ChangeLog @@ -1,3 +1,8 @@ +2003-09-09 Mikhail Khodjaiants + Added the 'getSharedLibraryPaths' and 'setSharedLibraryPaths' methods + to the 'ICDISharedLibraryManager' interface. + * ICDISharedLibraryManager.java + 2003-08-29 Mikhail Khodjaiants Implementation of deferred breakpoints. * CDebugTarget.java 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 1960c148fbb..0f7e4a541cd 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 @@ -55,50 +55,4 @@ public interface ICDISharedLibraryManager extends ICDIManager { * @throws CDIException */ void setSharedLibraryPaths(String[] libpaths) throws CDIException; - - /** - * Sets the "automatically load symbols from shared libraries" mode. - * - * @param set - * @throws CDIException - */ - void setAutoLoadSymbols(boolean set) throws CDIException; - - /** - * Returns the current autoloading mode. - * - * @return the current autoloading mode - * @throws CDIException - */ - boolean isAutoLoadSymbols() throws CDIException; - - /** - * Returns whether this manager supports autoloading. - * - * @return whether this manager supports autoloading - */ - boolean supportsAutoLoadSymbols(); - - /** - * Sets the "stop on shared library events" mode. - * - * @param set - * @throws CDIException - */ - void setStopOnSolibEvents(boolean set) throws CDIException; - - /** - * Returns the current mode of shared library events handling. - * - * @return the current mode of shared library events handling - * @throws CDIException - */ - boolean isStopOnSolibEvents() throws CDIException; - - /** - * Returns whether this manager supports shared library events handling. - * - * @return whether this manager supports shared library events handling - */ - boolean supportsStopOnSolibEvents(); }