getCountryCode(); } /** * {@inheritdoc} */ public function getCountryCode() { return $this->countryCode; } /** * {@inheritdoc} */ public function setCountryCode($countryCode) { $this->countryCode = $countryCode; return $this; } /** * {@inheritdoc} */ public function getName() { return $this->name; } /** * {@inheritdoc} */ public function setName($name) { $this->name = $name; return $this; } /** * {@inheritdoc} */ public function getThreeLetterCode() { return $this->threeLetterCode; } /** * {@inheritdoc} */ public function setThreeLetterCode($threeLetterCode) { $this->threeLetterCode = $threeLetterCode; return $this; } /** * {@inheritdoc} */ public function getNumericCode() { return $this->numericCode; } /** * {@inheritdoc} */ public function setNumericCode($numericCode) { $this->numericCode = $numericCode; return $this; } /** * {@inheritdoc} */ public function getTelephoneCode() { return $this->telephoneCode; } /** * {@inheritdoc} */ public function setTelephoneCode($telephoneCode) { $this->telephoneCode = $telephoneCode; return $this; } /** * {@inheritdoc} */ public function getLocale() { return $this->locale; } /** * {@inheritdoc} */ public function setLocale($locale) { $this->locale = $locale; return $this; } }