1 package ch.qos.logback.core.joran.replay; 2 3 public class WeightytFruit extends Fruit { 4 5 double weight; 6 7 public double getWeight() { 8 return weight; 9 } 10 11 public void setWeight(double weight) { 12 this.weight = weight; 13 } 14 15 16 }