1 package org.hibernate.test.batch; 3 4 import java.math.BigDecimal ; 5 6 9 public class DataPoint { 10 private long id; 11 private BigDecimal x; 12 private BigDecimal y; 13 private String description; 14 17 public String getDescription() { 18 return description; 19 } 20 23 public void setDescription(String description) { 24 this.description = description; 25 } 26 29 public long getId() { 30 return id; 31 } 32 35 public void setId(long id) { 36 this.id = id; 37 } 38 41 public BigDecimal getX() { 42 return x; 43 } 44 47 public void setX(BigDecimal x) { 48 this.x = x; 49 } 50 53 public BigDecimal getY() { 54 return y; 55 } 56 59 public void setY(BigDecimal y) { 60 this.y = y; 61 } 62 } 63 | Popular Tags |