Package factbookxml.converter.pda.schema

Examples of factbookxml.converter.pda.schema.ParsedCountries


      factbook.getNews().add(nn);
    }
    Map<String, String> countryids = new HashMap<String, String>();
    Map<String, String> countrynames = new HashMap<String, String>();
    Map<String, List<String>> countryAliases = new HashMap<String, List<String>>();
    ParsedCountries ctries = parse(dir, "countries.html", "countries", lastupdate, ParsedCountries.class);
    for (ParsedCountries.Country country : ctries.getCountry()) {
      countryids.put(country.getName(), country.getId());
      countrynames.put(country.getId(), country.getName());
      List<String> aliases = countryAliases.get(country.getId());
      if (aliases == null) {
        aliases = new ArrayList<String>();
View Full Code Here

TOP

Related Classes of factbookxml.converter.pda.schema.ParsedCountries

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.