1 11 package org.eclipse.debug.core.model; 12 13 14 import org.eclipse.debug.core.DebugException; 15 import org.eclipse.debug.core.IBreakpointListener; 16 17 42 public interface IDebugTarget extends IDebugElement, ITerminate, ISuspendResume, IBreakpointListener, IDisconnect, IMemoryBlockRetrieval { 43 48 public IProcess getProcess(); 49 61 public IThread[] getThreads() throws DebugException; 62 63 73 public boolean hasThreads() throws DebugException; 74 75 85 public String getName() throws DebugException; 86 87 93 public boolean supportsBreakpoint(IBreakpoint breakpoint); 94 } 95 96 97 | Popular Tags |