mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-06 17:26:01 +02:00
Removed the 'ICDILoadedEvent' interface.
This commit is contained in:
parent
5e0decd3d3
commit
3fcb7bd031
3 changed files with 3 additions and 33 deletions
|
@ -1,3 +1,6 @@
|
||||||
|
2003-01-16 Mikhail Khodjaiants
|
||||||
|
* ICDILoadedEvent.java: Removed.
|
||||||
|
|
||||||
2003-01-16 Alain Magloire
|
2003-01-16 Alain Magloire
|
||||||
|
|
||||||
* src/org/eclipse/cdt/debug/core/cdi/model/ICDIStringValue.java: Removed.
|
* src/org/eclipse/cdt/debug/core/cdi/model/ICDIStringValue.java: Removed.
|
||||||
|
|
|
@ -1,21 +0,0 @@
|
||||||
/*
|
|
||||||
*(c) Copyright QNX Software Systems Ltd. 2002.
|
|
||||||
* All Rights Reserved.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
package org.eclipse.cdt.debug.core.cdi.event;
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* Notifies that the originator has been restarted.
|
|
||||||
* The originators:
|
|
||||||
* <ul>
|
|
||||||
* <li>shared library (ICDISharedLibrary)
|
|
||||||
* </ul>
|
|
||||||
*
|
|
||||||
* @since Jul 11, 2002
|
|
||||||
*/
|
|
||||||
public interface ICDILoadedEvent extends ICDIEvent
|
|
||||||
{
|
|
||||||
}
|
|
|
@ -42,7 +42,6 @@ import org.eclipse.cdt.debug.core.cdi.event.ICDIDisconnectedEvent;
|
||||||
import org.eclipse.cdt.debug.core.cdi.event.ICDIEvent;
|
import org.eclipse.cdt.debug.core.cdi.event.ICDIEvent;
|
||||||
import org.eclipse.cdt.debug.core.cdi.event.ICDIEventListener;
|
import org.eclipse.cdt.debug.core.cdi.event.ICDIEventListener;
|
||||||
import org.eclipse.cdt.debug.core.cdi.event.ICDIExitedEvent;
|
import org.eclipse.cdt.debug.core.cdi.event.ICDIExitedEvent;
|
||||||
import org.eclipse.cdt.debug.core.cdi.event.ICDILoadedEvent;
|
|
||||||
import org.eclipse.cdt.debug.core.cdi.event.ICDIRestartedEvent;
|
import org.eclipse.cdt.debug.core.cdi.event.ICDIRestartedEvent;
|
||||||
import org.eclipse.cdt.debug.core.cdi.event.ICDIResumedEvent;
|
import org.eclipse.cdt.debug.core.cdi.event.ICDIResumedEvent;
|
||||||
import org.eclipse.cdt.debug.core.cdi.event.ICDISuspendedEvent;
|
import org.eclipse.cdt.debug.core.cdi.event.ICDISuspendedEvent;
|
||||||
|
@ -932,13 +931,6 @@ public class CDebugTarget extends CDebugElement
|
||||||
handleChangedEvent( (ICDIChangedEvent)event );
|
handleChangedEvent( (ICDIChangedEvent)event );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if ( event instanceof ICDILoadedEvent )
|
|
||||||
{
|
|
||||||
if ( source instanceof ICDITarget )
|
|
||||||
{
|
|
||||||
handleLoadedEvent( (ICDILoadedEvent)event );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else if ( event instanceof ICDIRestartedEvent )
|
else if ( event instanceof ICDIRestartedEvent )
|
||||||
{
|
{
|
||||||
if ( source instanceof ICDITarget )
|
if ( source instanceof ICDITarget )
|
||||||
|
@ -1424,10 +1416,6 @@ public class CDebugTarget extends CDebugElement
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
private void handleLoadedEvent( ICDILoadedEvent event )
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
private void handleRestartedEvent( ICDIRestartedEvent event )
|
private void handleRestartedEvent( ICDIRestartedEvent event )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue