X-Git-Url: https://git.piment-noir.org/?p=Persons_Comparator.git;a=blobdiff_plain;f=src%2FWeightView.java;h=239c437556dededfbbaf3839a0dba0b5c528d89b;hp=3e6d00f668a0270f8f0f9ee5b42e88410e8116f1;hb=883508cad71557d375580ce52a4e093f131405db;hpb=089fcbfccd75b77daf843b22e128beeee1d1dc07 diff --git a/src/WeightView.java b/src/WeightView.java index 3e6d00f..239c437 100644 --- a/src/WeightView.java +++ b/src/WeightView.java @@ -2,8 +2,12 @@ import javax.swing.*; public class WeightView extends JComponent { private Weight weightObj; + private JLabel label; WeightView() { + this.label = new JLabel(); + this.label.setText("Weight"); + add(label); } WeightView(Weight weightObj) {