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:
parent
a94f8e09ef
commit
1ab7121260
2 changed files with 16 additions and 0 deletions
|
@ -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.
|
||||
*
|
||||
|
|
|
@ -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() {
|
||||
|
|
Loading…
Add table
Reference in a new issue