id; } /** * Set date. * * @param int $date * * @return Legal */ public function setDate($date) { $this->date = $date; return $this; } /** * Get date. * * @return int */ public function getDate() { return $this->date; } /** * Set content. * * @param string $content * * @return Legal */ public function setContent($content) { $this->content = $content; return $this; } /** * Get content. * * @return string */ public function getContent() { return $this->content; } /** * Set type. * * @param int $type * * @return Legal */ public function setType($type) { $this->type = $type; return $this; } /** * Get type. * * @return int */ public function getType() { return $this->type; } /** * Set changes. * * @param string $changes * * @return Legal */ public function setChanges($changes) { $this->changes = $changes; return $this; } /** * Get changes. * * @return string */ public function getChanges() { return $this->changes; } /** * Set version. * * @param int $version * * @return Legal */ public function setVersion($version) { $this->version = $version; return $this; } /** * Get version. * * @return int */ public function getVersion() { return $this->version; } /** * Set languageId. * * @param int $languageId * * @return Legal */ public function setLanguageId($languageId) { $this->languageId = $languageId; return $this; } /** * Get languageId. * * @return int */ public function getLanguageId() { return $this->languageId; } }