blob: a15f877a95aa014e8c9627499101e71363829408 [file] [log] [blame]
package org.eclipse.ptp.debug.external.core.proxy.command;
import org.eclipse.ptp.core.proxy.IProxyClient;
import org.eclipse.ptp.core.util.BitList;
public class ProxyDebugDeleteBreakpointCommand extends AbstractProxyDebugCommand implements IProxyDebugCommand {
public ProxyDebugDeleteBreakpointCommand(IProxyClient client, BitList procs, int bpid) {
super(client, procs);
addArgument(bpid);
}
public int getCommandID() {
return DELETEBREAKPOINT;
}
}