1 package bar;
2 
3 /**
4  * Just a fruit
5  */
6 public class Banana {
7     private Double weight;
8 
9     /**
10      * Returns weight
11      *
12      * @return weight
13      * @deprecated
14      */
getWeight()15     public Double getWeight() {
16         return weight;
17     }
18 
19     /**
20      * Sets weight
21      *
22      * @param weight in grams
23      * @deprecated with message
24      */
setWeight(Double weight)25     public void setWeight(Double weight) {
26         this.weight = weight;
27     }
28 }