Merge branch 'master' of /home/sylvain/IdeaProjects/Persons_Comparator with conflicts.
[Persons_Comparator.git] / src / Region.java
1 import java.util.ArrayList;
2 import java.util.List;
3 import java.util.TreeMap;
4
5 public class Region extends TreeMap<String, ArrayList<Country>> {
6 private List<Country> country;
7
8 public void setCountry(List<Country> origins) {
9 this.country = country;
10 }
11
12 public List<Country> getCountry() {
13 return country;
14 }
15 }