1 //$Id: J.java,v 1.2 2005/06/19 02:01:05 oneovthafew Exp $2 package org.hibernate.test.legacy;3 4 /**5 * @author Gavin King6 */7 public class J extends I {8 private float amount;9 10 void setAmount(float amount) {11 this.amount = amount;12 }13 14 float getAmount() {15 return amount;16 }17 }18