/**
  * This method is used to save any additional input into the current task object
  * if the task class matches
  *
  * @param	array				$submittedData: array containing the data submitted by the user
  * @param	tx_scheduler_Task	$task: reference to the current task object
  * @return	void
  */
 public function saveAdditionalFields(array $submittedData, tx_scheduler_Task $task)
 {
     $task->setNodeId($submittedData['update_node_id']);
 }