android13/external/dokka/core/testdata/javadoc/deprecated.java

28 lines
420 B
Java

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;
}
}