KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > test > legacy > J


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 King
6  */

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
Popular Tags