Add a label to all views.
[Persons_Comparator.git] / src / WeightView.java
1 import javax.swing.*;
2
3 public class WeightView extends JComponent {
4 private Weight weightObj;
5 private JLabel label;
6
7 WeightView() {
8 this.label = new JLabel();
9 this.label.setText("Weight");
10 add(label);
11 }
12
13 WeightView(Weight weightObj) {
14 setWeightObj(weightObj);
15 }
16
17 public Weight getWeightObj() {
18 return weightObj;
19 }
20
21 public void setWeightObj(Weight weightObj) {
22 this.weightObj = weightObj;
23 }
24 }