mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 09:46:02 +02:00
CModuleManager needs to extend PlatformObject to be accessible as an adapter for IModuleRetrival.
This commit is contained in:
parent
b86598e23f
commit
c249d2f543
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2006-02-20 Mikhail Khodjaiants
|
||||||
|
CModuleManager needs to extend PlatformObject to be accessible as an adapter
|
||||||
|
for IModuleRetrival.
|
||||||
|
* CModuleManager.java
|
||||||
|
|
||||||
2006-02-08 Mikhail Khodjaiants
|
2006-02-08 Mikhail Khodjaiants
|
||||||
Bug 126958: wrong state setting for thread in CThread.handleResumeEvent().
|
Bug 126958: wrong state setting for thread in CThread.handleResumeEvent().
|
||||||
* CThread.java
|
* CThread.java
|
||||||
|
|
|
@ -21,6 +21,7 @@ import org.eclipse.cdt.debug.core.model.IModuleRetrieval;
|
||||||
import org.eclipse.cdt.debug.internal.core.ICDebugInternalConstants;
|
import org.eclipse.cdt.debug.internal.core.ICDebugInternalConstants;
|
||||||
import org.eclipse.core.runtime.IStatus;
|
import org.eclipse.core.runtime.IStatus;
|
||||||
import org.eclipse.core.runtime.MultiStatus;
|
import org.eclipse.core.runtime.MultiStatus;
|
||||||
|
import org.eclipse.core.runtime.PlatformObject;
|
||||||
import org.eclipse.core.runtime.Status;
|
import org.eclipse.core.runtime.Status;
|
||||||
import org.eclipse.debug.core.DebugEvent;
|
import org.eclipse.debug.core.DebugEvent;
|
||||||
import org.eclipse.debug.core.DebugException;
|
import org.eclipse.debug.core.DebugException;
|
||||||
|
@ -28,7 +29,7 @@ import org.eclipse.debug.core.DebugException;
|
||||||
/**
|
/**
|
||||||
* Manages the modules loaded on this debug target.
|
* Manages the modules loaded on this debug target.
|
||||||
*/
|
*/
|
||||||
public class CModuleManager implements IModuleRetrieval {
|
public class CModuleManager extends PlatformObject implements IModuleRetrieval {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The debug target associated with this manager.
|
* The debug target associated with this manager.
|
||||||
|
|
Loading…
Add table
Reference in a new issue