1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 17:56:01 +02:00

Support for debugger console.

This commit is contained in:
Mikhail Khodjaiants 2002-10-23 17:38:53 +00:00
parent 97fc7f02f3
commit d3f650c9c6

View file

@ -826,6 +826,8 @@ public class CDebugTarget extends CDebugElement
}
if ( adapter.equals( ICMemoryManager.class ) )
return getMemoryManager();
if ( adapter.equals( IDebuggerProcessSupport.class ) )
return this;
return super.getAdapter( adapter );
}
@ -1958,5 +1960,4 @@ public class CDebugTarget extends CDebugElement
{
return ( fDebuggerProcess != null );
}
}