public void setTimerAction(TimerAction timerAction) {
if (timerAction == TimerAction.NONE) {
timerAction = null;
}
TimerAction old = this.timerAction;
this.timerAction = timerAction;
firePropertyChange(PROPERTY_TIMER_ACTION, old, this.timerAction);
}