3 public class WeightView
extends JPanel
{
4 private Weight weightObj
;
6 private JComboBox
<Integer
> comboBox
;
8 WeightView(Weight weightObj
) {
9 setWeightObj(weightObj
);
10 this.label
= new JLabel();
11 this.label
.setText("Weight (kilograms)");
12 this.comboBox
= new JComboBox
<>(this.getWeightObj().getValuesArray());
13 if (this.getWeightObj().getWeight() != 0)
14 this.comboBox
.setSelectedItem(this.getWeightObj().getWeight());
16 this.comboBox
.setSelectedItem(this.getWeightObj().getDefaultWeight());
21 public Weight
getWeightObj() {
25 public void setWeightObj(Weight weightObj
) {
26 this.weightObj
= weightObj
;