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