X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2FWeightView.java;fp=src%2FWeightView.java;h=e6b69c54e62fa8fb62be14bd74786fd28d491cb7;hb=6977e6142a133673703769e092e6283dda73cf4f;hp=0000000000000000000000000000000000000000;hpb=6b48f5704ad227586a57e15fdeade02e7d7332f7;p=Persons_Comparator.git diff --git a/src/WeightView.java b/src/WeightView.java new file mode 100644 index 0000000..e6b69c5 --- /dev/null +++ b/src/WeightView.java @@ -0,0 +1,15 @@ +public class WeightView { + private Weight weightObj; + + WeightView(Weight weightObj) { + setWeightObj(weightObj); + } + + public Weight getWeightObj() { + return weightObj; + } + + public void setWeightObj(Weight weightObj) { + this.weightObj = weightObj; + } +}