* {@inheritDoc}
*/
@Override
final void dispatch(IBasicRobot robot, IRobotStatics statics, Graphics2D graphics) {
if (statics.isPaintRobot()) {
IPaintEvents listener = ((IPaintRobot) robot).getPaintEventListener();
if (listener != null) {
listener.onPaint(graphics);
}
}
}