blob: 4193d9c2042e835faa2fe37d636a2f904c2ca16f [file] [log] [blame]
package org.eclipse.ptp.debug.external.core.proxy.command;
import org.eclipse.ptp.core.proxy.IProxyClient;
import org.eclipse.ptp.core.util.BitList;
public class ProxyDebugEvaluateExpressionCommand extends AbstractProxyDebugCommand implements IProxyDebugCommand {
public ProxyDebugEvaluateExpressionCommand(IProxyClient client, BitList procs, String expr) {
super(client, procs);
addArgument(expr);
}
public int getCommandID() {
return EVALUATEEXPRESSION;
}
}