blob: 5a6cdd77ca02270ef31e5d3ce0549bf7724b4b28 [file] [log] [blame]
package bar;
/**
* Just a fruit
*/
public class Banana {
private Double weight;
/**
* Returns weight
*
* @return weight
* @deprecated
*/
public Double getWeight() {
return weight;
}
/**
* Sets weight
*
* @param weight in grams
* @deprecated with message
*/
public void setWeight(Double weight) {
this.weight = weight;
}
}