package bluej.testmgr.record;
import bluej.utility.JavaUtils;
import threadchecker.OnThread;
import threadchecker.Tag;
| Records a single user interaction with the
| method call mechanisms of BlueJ.
|
| <p>This record is for method calls with no result.
|
| @author Bruce Quig
|
public class ExpressionInvokerRecord
extends MethodInvokerRecord {
| Construct an ExpressionInvokerRecord for the given command/expression.
|
@OnThread(Tag.FXPlatform)
public ExpressionInvokerRecord(String command)
{
super(JavaUtils.genTypeFromClass(Object.class), command, null);
}
|
| @see bluej.testmgr.record.MethodInvokerRecord#benchAssignmentTypecast()
|
protected String benchAssignmentTypecast()
{
StringBuffer sb = new StringBuffer();
sb.append(benchName);
sb.append(" = ");
sb.append(command);
return sb.toString();
}
}
top,
use,
map,
class ExpressionInvokerRecord
. ExpressionInvokerRecord
. benchAssignmentTypecast
27 neLoCode
+ 7 LoComm