special_action_id = $special_action_id; $this->name = $name; $this->description = $description; } /** * @return string */ public function get_special_action_id() { return $this->special_action_id; } /** * @return string */ public function get_name() { return $this->name; } /** * @return string */ public function get_description() { return $this->description; } /** * @return bool */ abstract public function is_cancel(); /** * @return bool */ abstract public function is_stop(); }