KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > xml > querying > impl > xtas > TmpBean


1 package org.exoplatform.services.xml.querying.impl.xtas;
2
3 import java.io.Serializable JavaDoc;
4
5 public class TmpBean implements Serializable JavaDoc
6 {
7     private String JavaDoc property;
8     private Integer JavaDoc e1;
9     private Float JavaDoc f2;
10
11     public TmpBean()
12     {
13     }
14
15     public TmpBean(String JavaDoc property, Integer JavaDoc e1, Float JavaDoc f2)
16     {
17         this.property = property;
18         this.e1 = e1;
19         this.f2 = f2;
20     }
21
22     public String JavaDoc getProperty(){ return property; }
23
24     public void setProperty(String JavaDoc property){ this.property = property; }
25
26     public Integer JavaDoc getE1(){ return e1; }
27
28     public void setE1(Integer JavaDoc e1){ this.e1 = e1; }
29
30     public Float JavaDoc getF2(){ return f2; }
31
32     public void setF2(Float JavaDoc f2){ this.f2 = f2; }
33
34 }
35
Popular Tags