+ /**
+ * Check if the given country is covered by the search context.
+ *
+ * @param string $sCountryCode Country code of the country to check.
+ *
+ * @return True, if no country code restrictions are set or the
+ * country is included in the country list.
+ */
+ public function isCountryApplicable($sCountryCode)
+ {
+ return $this->aCountryList === null || in_array($sCountryCode, $this->aCountryList);
+ }
+