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