a method 'getDuration' that returns a 'Duration' object.
a method 'check' that accepts an integer parameter and returns a 'Result' object.
a method 'getScore' that returns a double.
I did the following and was wrong:
public interface PointingDevice { int getXCoord();
int getYCoord();
boolean attentionRequired();
double setResolution(double x); }