mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-31 04:45:38 +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();
|
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.
|
* 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.ICDIRuntimeOptions;
|
||||||
import org.eclipse.cdt.debug.core.cdi.ICDISession;
|
import org.eclipse.cdt.debug.core.cdi.ICDISession;
|
||||||
import org.eclipse.cdt.debug.core.cdi.ICDISessionObject;
|
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.ICDISignalManager;
|
||||||
import org.eclipse.cdt.debug.core.cdi.ICDISourceManager;
|
import org.eclipse.cdt.debug.core.cdi.ICDISourceManager;
|
||||||
import org.eclipse.cdt.debug.core.cdi.model.ICDITarget;
|
import org.eclipse.cdt.debug.core.cdi.model.ICDITarget;
|
||||||
|
@ -38,6 +39,7 @@ public class CSession implements ICDISession, ICDISessionObject {
|
||||||
VariableManager variableManager;
|
VariableManager variableManager;
|
||||||
RegisterManager registerManager;
|
RegisterManager registerManager;
|
||||||
MemoryManager memoryManager;
|
MemoryManager memoryManager;
|
||||||
|
SharedLibraryManager sharedLibraryManager;
|
||||||
SignalManager signalManager;
|
SignalManager signalManager;
|
||||||
SourceManager sourceManager;
|
SourceManager sourceManager;
|
||||||
ICDIConfiguration configuration;
|
ICDIConfiguration configuration;
|
||||||
|
@ -103,6 +105,13 @@ public class CSession implements ICDISession, ICDISessionObject {
|
||||||
return variableManager;
|
return variableManager;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see org.eclipse.cdt.debug.core.cdi.ICDISession#getSharedLibraryManager()
|
||||||
|
*/
|
||||||
|
public ICDISharedLibraryManager getSharedLibraryManager() {
|
||||||
|
return sharedLibraryManager;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*/
|
*/
|
||||||
public RegisterManager getRegisterManager() {
|
public RegisterManager getRegisterManager() {
|
||||||
|
|
Loading…
Add table
Reference in a new issue