* Update the mark presenter whenever the mark model suffers a change. This
* class is an observer of {@link MarkModel}
*/
public void update(Observable o, Object arg) {
MarkModelChange change = (MarkModelChange) arg;
switch (change) {
case NEW:
this.action = DrawAction.NEW;
break;
case MODIFY: