/**
  * ロケーションコードデータを SimpleXMLElements型のまま提供します。
  *
  * @return SimpleXMLElements ロケーションコードデータ
  */
 public static function getSimpleXMLElement()
 {
     if (self::$locationCodes != null) {
         return self::$locationCodes;
     }
     self::$locationCodes = simplexml_load_file(VCSDBDRIVER_LOCATION_FILE);
     return self::$locationCodes;
 }