1: import java.util.*;
3: public class CountryComparatorByName implements Comparator<Country>
4: {
5: public int compare(Country country1, Country country2)
6: {
7: return country1.getName().compareTo(country2.getName());
8: }
10: }