blob: f9d87ad92fcd23893c1ce56558b6507a5f38ac6d [file] [log] [blame]
package org.eclipse.ptp.proxy.debug.command;
public class ProxyDebugDeleteBreakpointCommand extends AbstractProxyDebugCommand implements IProxyDebugCommand {
public ProxyDebugDeleteBreakpointCommand(String bits, int bpid) {
super(DELETEBREAKPOINT, bits);
addArgument(bpid);
}
public ProxyDebugDeleteBreakpointCommand(int transID, String[] args) {
super(DELETEBREAKPOINT, transID, args);
}
}