language = $language; $this->country = $country; } public function equals($obj) { if (! ($obj instanceof Locale)) { return false; } return ($obj->language == $this->language && $obj->country == $this->country); } public function getLanguage() { return $this->language; } public function getCountry() { return $this->country; } }