+ switch ($aWord['type']) {
+ 'C': // country name tokens
+ if ($aWord['country'] === null
+ || ($this->aCountryRestriction
+ && !in_array($aWord['country'], $this->aCountryRestriction))
+ ) {
+ continue;
+ }
+ $oToken = new Token\Country($iId, $aWord['country'])
+ break;
+ 'H': // house number tokens
+ $oToken = new Token\HouseNumber($iId, $aWord['word_token']);
+ break;
+ default:
+ continue;
+ }
+/* if ($aWord['class']) {