Work on Region, RegionView, countries.csv, Country
[Persons_Comparator.git] / src / RegionView.java
CommitLineData
f56708fa
SP
1import javax.swing.*;
2
3public class RegionView extends JPanel {
4 private Region regionObj;
5 private JLabel label;
6
7 RegionView(Region regionObj) {
8 setRegionObj(regionObj);
9 this.label = new JLabel();
10 this.label.setText("Region");
11 }
12
13 public void setRegionObj(Region regionObj) {
14 this.regionObj = regionObj;
15
16 }
71754579 17}