blob: 2bff7b7dc2ed46e8cb3ae5833ac84a81d0c992de [file] [log] [blame]
package org.eclipse.ptp.proxy.debug.command;
public class ProxyDebugListSignalsCommand extends AbstractProxyDebugCommand implements IProxyDebugCommand {
public ProxyDebugListSignalsCommand(String bits, String name) {
super(LISTSIGNALS, bits);
addArgument(name);
}
public ProxyDebugListSignalsCommand(int transID, String[] args) {
super(LISTSIGNALS, transID, args);
}
}