mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Added the 'ICDISharedLibraryManager' interface.
This commit is contained in:
parent
95547c889e
commit
57fc849fec
2 changed files with 30 additions and 1 deletions
|
@ -1,4 +1,8 @@
|
|||
2003-01-14 Mikhail Khodjaiants
|
||||
2003-01-15 Mikhail Khodjaiants
|
||||
Added the 'ICDISharedLibraryManager' interface.
|
||||
* ICDISharedLibraryManager.java
|
||||
|
||||
2003-01-15 Mikhail Khodjaiants
|
||||
Added new methods to the 'ICDISharedLibrary' interface.
|
||||
* ICDISharedLibarary.java
|
||||
|
||||
|
|
|
@ -0,0 +1,25 @@
|
|||
/*
|
||||
*(c) Copyright QNX Software Systems Ltd. 2002.
|
||||
* All Rights Reserved.
|
||||
*
|
||||
*/
|
||||
package org.eclipse.cdt.debug.core.cdi;
|
||||
|
||||
import org.eclipse.cdt.debug.core.cdi.model.ICDISharedLibrary;
|
||||
|
||||
/**
|
||||
*
|
||||
* Manages the collection of shared libraries in the debug session.
|
||||
*
|
||||
* @since: Jan 15, 2003
|
||||
*/
|
||||
public interface ICDISharedLibraryManager extends ICDISessionObject
|
||||
{
|
||||
/**
|
||||
* Returns the array of loaded shared libraries.
|
||||
*
|
||||
* @return the array of loaded shared libraries
|
||||
* @throws CDIException on failure. Reasons include:
|
||||
*/
|
||||
ICDISharedLibrary[] getSharedLibraries() throws CDIException;
|
||||
}
|
Loading…
Add table
Reference in a new issue