blob: 53382719f7cefd80dec41ad7266fa398c336f83f [file] [log] [blame]
package org.eclipse.ptp.proxy.debug.command;
public class ProxyDebugStartSessionCommand extends AbstractProxyDebugCommand implements IProxyDebugCommand {
public ProxyDebugStartSessionCommand(String prog, String path,
String dir, String[] args) {
super(STARTSESSION);
addArgument(prog);
addArgument(path);
addArgument(dir);
addArguments(args);
}
public ProxyDebugStartSessionCommand(int transID, String[] args) {
super(STARTSESSION, transID, args);
}
}