KickJava   Java API By Example, From Geeks To Geeks.

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


1 //$Id: E.java,v 1.1 2004/09/26 05:18:25 oneovthafew Exp $
2
package org.hibernate.test.legacy;
3
4 import java.util.Set JavaDoc;
5
6 public class E {
7     private Long JavaDoc id;
8     private float amount;
9     private A reverse;
10     private Set JavaDoc as;
11     /**
12      * Returns the amount.
13      * @return float
14      */

15     public float getAmount() {
16         return amount;
17     }
18     
19     /**
20      * Returns the id.
21      * @return long
22      */

23     public Long JavaDoc getId() {
24         return id;
25     }
26     
27     /**
28      * Sets the amount.
29      * @param amount The amount to set
30      */

31     public void setAmount(float amount) {
32         this.amount = amount;
33     }
34     
35     /**
36      * Sets the id.
37      * @param id The id to set
38      */

39     public void setId(Long JavaDoc id) {
40         this.id = id;
41     }
42     
43     public A getReverse() {
44         return reverse;
45     }
46
47     public void setReverse(A a) {
48         reverse = a;
49     }
50
51     /**
52      * @return Returns the as.
53      */

54     public Set JavaDoc getAs() {
55         return as;
56     }
57
58     /**
59      * @param as The as to set.
60      */

61     public void setAs(Set JavaDoc as) {
62         this.as = as;
63     }
64
65 }
66
67
68
69
70
71
72
Popular Tags