/**
  * Constructor.
  *
  * @param string $rawContent Literal message as received from ami
  */
 public function __construct($rawContent)
 {
     parent::__construct($rawContent);
     $this->_events = array();
     $this->_eventsCount = 0;
     $this->_completed = !$this->isList();
 }