KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sf > cglib > proxy > ED


1 package net.sf.cglib.proxy;
2
3 public class ED {
4     private Long JavaDoc id;
5     private float amount;
6
7     public float getAmount() {
8         return amount;
9     }
10
11     public Long JavaDoc getId() {
12         return id;
13     }
14
15     public void setAmount(float amount) {
16         this.amount = amount;
17     }
18
19     public void setId(Long JavaDoc id) {
20         this.id = id;
21     }
22 }
23
24
Popular Tags