1 package org.hibernate.test.proxy; 3 4 import java.io.Serializable ; 5 import java.math.BigDecimal ; 6 7 10 public class DataPoint implements Serializable { 11 private long id; 12 private BigDecimal x; 13 private BigDecimal y; 14 private String description; 15 18 public String getDescription() { 19 return description; 20 } 21 24 public void setDescription(String description) { 25 this.description = description; 26 } 27 30 public long getId() { 31 return id; 32 } 33 36 public void setId(long id) { 37 this.id = id; 38 } 39 42 public BigDecimal getX() { 43 return x; 44 } 45 48 public void setX(BigDecimal x) { 49 this.x = x; 50 } 51 54 public BigDecimal getY() { 55 return y; 56 } 57 60 public void setY(BigDecimal y) { 61 this.y = y; 62 } 63 } 64 | Popular Tags |