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