package pl.codegym.task.task19.task1903;
/*
Dostosowywanie wielu interfejsów
*/
import java.util.HashMap;
import java.util.Map;
public class Solution {
public static Map<String, String> countries = new HashMap<>();
static {
countries.put("UA","Ukraina");
countries.put("US","Stany Zjednoczone");
countries.put("FR","Francja");
}
public static void main(String[] args) {
}
public static class IncomeDataAdapter implements Customer,Contact {
private IncomeData data;
public IncomeDataAdapter(IncomeData data) {
this.data = data;
}
public String getCompanyName() {
return data.getCompany();
} // Na przykład: CodeGym Ltd.
public String getCountryName() {
String s = data.getCountryCode();
return countries.get(s);
} // Na przykład: Stany Zjednoczone
public String getName() {
return data.getContactLastName() + ", " + data.getContactFirstName();
} // Na przykład: Smith, John
public String getPhoneNumber() {
String s = "+" + Integer.toString(data.getCountryPhoneCode());// +"(";
String k = Integer.toString(data.getPhoneNumber());
for(int i = 0; i< k.length(); i++){
char c = k.charAt(i);
//if(i==3)
//s+=")";
//if(i==6 || i==8)
///s+="-";
s+=c;
}
for(int i = k.length(); i<10;i++)
{
//if(i==3)
//s+=")";
//if(i==6 || i==8)
//s+="-";
s+="0";
}
return s;
} // Na przykład: +1(099)123-45-67
}
public static interface IncomeData {
String getCountryCode(); // Na przykład: US
String getCompany(); // Na przykład: CodeGym Ltd.
String getContactFirstName(); // Na przykład: John
String getContactLastName(); // Na przykład: Smith
int getCountryPhoneCode(); // Na przykład: 1
int getPhoneNumber(); // Na przykład: 991234567
}
public static interface Customer {
String getCompanyName(); // Na przykład: CodeGym Ltd.
String getCountryName(); // Na przykład: Stany Zjednoczone
}
public static interface Contact {
String getName(); // Na przykład: Smith, John
String getPhoneNumber(); // Na przykład: +1(099)123-45-67
}
}