public void init() {
for (CDXmlDescriptor current : cdXmlDescriptors) {
String countryName = current.getCountry();
String companyName = current.getCompany();
Country country = getCountryByName(current);
Company company = getCompanyByName(current, country);
CD cd = new CD(current.getTitle(), current.getArtist(), company, current.getPrice(), current.getYear());
company.getCds().add(cd);
}
}