blob: bc69fbbc4b87a35ba6093dbf15aa7d911c5ab6ae [file] [log] [blame]
package org.eclipse.ptp.proxy.debug.command;
/**
* @deprecated
*/
@Deprecated
public class ProxyDebugSignalInfoCommand extends AbstractProxyDebugCommand implements IProxyDebugCommand {
public ProxyDebugSignalInfoCommand(int transID, String[] args) {
super(SIGNALINFO, transID, args);
}
public ProxyDebugSignalInfoCommand(String bits, String arg) {
super(SIGNALINFO, bits);
addArgument(arg);
}
}