package bluej.testmgr.record;top, use, map, class StatementInvokerRecord
| An invocation record for a free-form statement. | | @author Davin McCall | public class StatementInvokerRecord extends VoidMethodInvokerRecord{ public StatementInvokerRecord(String command) { super(command, null); } @Override public String toExpression() { return null; } @Override public String toStatement() { return getOriginalCommand(); } }