blob: 251718a361093e633f8900d36e955d5943022c56 [file] [log] [blame]
package org.eclipse.ptp.proxy.debug.command;
public class ProxyDebugEvaluatePartialExpressionCommand extends AbstractProxyDebugCommand implements IProxyDebugCommand {
public ProxyDebugEvaluatePartialExpressionCommand(int transID, String[] args) {
super(EVALUATEPARTIALEXPRESSION, transID, args);
}
public ProxyDebugEvaluatePartialExpressionCommand(String bits, String expr, String exprId, boolean listChildren, boolean express) {
super(EVALUATEPARTIALEXPRESSION, bits);
addArgument(expr);
addArgument(exprId);
addArgument(listChildren);
addArgument(express);
}
}