Add an ArrayList of persons to the Person class.
[Persons_Comparator.git] / src / WeightView.java
index e6b69c54e62fa8fb62be14bd74786fd28d491cb7..1576b62e2e836d77e3433b3c49e32e092ab79bc2 100644 (file)
@@ -1,8 +1,14 @@
-public class WeightView {
+import javax.swing.*;
+
+public class WeightView extends JComponent {
     private Weight weightObj;
+    private JLabel label;
 
     WeightView(Weight weightObj) {
         setWeightObj(weightObj);
+        this.label = new JLabel();
+        this.label.setText("Weight");
+        add(label);
     }
 
     public Weight getWeightObj() {