Finish the WeightView by using a JComboBox.
[Persons_Comparator.git] / src / WeightView.java
index e6b69c54e62fa8fb62be14bd74786fd28d491cb7..fd6d68cb40d0e974ca32b226fb3d80cb6611a9a7 100644 (file)
@@ -1,8 +1,21 @@
-public class WeightView {
+import javax.swing.*;
+
+public class WeightView extends JPanel {
     private Weight weightObj;
+    private JLabel label;
+    private JComboBox<Integer> comboBox;
 
     WeightView(Weight weightObj) {
         setWeightObj(weightObj);
+        this.label = new JLabel();
+        this.label.setText("Weight (kilograms)");
+        this.comboBox = new JComboBox<>(this.getWeightObj().getValuesArray());
+        if (this.getWeightObj().getWeight() != 0)
+            this.comboBox.setSelectedItem(this.getWeightObj().getWeight());
+        else
+            this.comboBox.setSelectedItem(this.getWeightObj().getDefaultWeight());
+        add(label);
+        add(comboBox);
     }
 
     public Weight getWeightObj() {