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