1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Added the 'getSharedLibraryPaths' and 'setSharedLibraryPaths' methods to the 'ICDISharedLibraryManager' interface.

This commit is contained in:
Mikhail Khodjaiants 2003-09-08 20:33:45 +00:00
parent 11cdc640c6
commit 5698a06608
2 changed files with 5 additions and 46 deletions

View file

@ -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 2003-08-29 Mikhail Khodjaiants
Implementation of deferred breakpoints. Implementation of deferred breakpoints.
* CDebugTarget.java * CDebugTarget.java

View file

@ -55,50 +55,4 @@ public interface ICDISharedLibraryManager extends ICDIManager {
* @throws CDIException * @throws CDIException
*/ */
void setSharedLibraryPaths(String[] libpaths) 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();
} }