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