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