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