1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

New method getSharedLibraryManager().

This commit is contained in:
Alain Magloire 2003-01-16 16:25:23 +00:00
parent a94f8e09ef
commit 1ab7121260
2 changed files with 16 additions and 0 deletions

View file

@ -89,6 +89,13 @@ public interface ICDISession {
*/
ICDIEventManager getEventManager();
/**
* Returns the shared library manager of this debug session.
*
* @return the shared library manager
*/
ICDISharedLibraryManager getSharedLibraryManager();
/**
* Returns the configuration description of this debug session.
*

View file

@ -17,6 +17,7 @@ import org.eclipse.cdt.debug.core.cdi.ICDIMemoryManager;
import org.eclipse.cdt.debug.core.cdi.ICDIRuntimeOptions;
import org.eclipse.cdt.debug.core.cdi.ICDISession;
import org.eclipse.cdt.debug.core.cdi.ICDISessionObject;
import org.eclipse.cdt.debug.core.cdi.ICDISharedLibraryManager;
import org.eclipse.cdt.debug.core.cdi.ICDISignalManager;
import org.eclipse.cdt.debug.core.cdi.ICDISourceManager;
import org.eclipse.cdt.debug.core.cdi.model.ICDITarget;
@ -38,6 +39,7 @@ public class CSession implements ICDISession, ICDISessionObject {
VariableManager variableManager;
RegisterManager registerManager;
MemoryManager memoryManager;
SharedLibraryManager sharedLibraryManager;
SignalManager signalManager;
SourceManager sourceManager;
ICDIConfiguration configuration;
@ -103,6 +105,13 @@ public class CSession implements ICDISession, ICDISessionObject {
return variableManager;
}
/**
* @see org.eclipse.cdt.debug.core.cdi.ICDISession#getSharedLibraryManager()
*/
public ICDISharedLibraryManager getSharedLibraryManager() {
return sharedLibraryManager;
}
/**
*/
public RegisterManager getRegisterManager() {