* @param record the raw data that makes up the record.
*/
public void setRecord(final MfRecord record)
{
final int c = record.getLongParam(POS_COLOR);
final Color color = new GDIColor(c);
final int y = record.getParam(POS_Y);
final int x = record.getParam(POS_X);
setTarget(x, y);
setColor(color);
}