comparison flys-backend/src/main/java/de/intevation/flys/model/WstColumnQRange.java @ 167:15d515fe15f5

Added POJOs to be mapped to schema. flys-backend/trunk@1456 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Thu, 10 Mar 2011 13:44:51 +0000
parents
children 86a1bd9cc50e
comparison
equal deleted inserted replaced
166:56eb8f1b42cf 167:15d515fe15f5
1 package de.intevation.flys.model;
2
3 import java.math.BigDecimal;
4
5 import java.io.Serializable;
6
7 public class WstColumnQRange
8 implements Serializable
9 {
10 private Long id;
11 private WstColumn wstColumn;
12 private WstQRange wstQRange;
13
14 public WstColumnQRange() {
15 }
16
17 public void setId(Long id) {
18 this.id = id;
19 }
20
21 public Long getId() {
22 return id;
23 }
24
25 public void setWstColumn(WstColumn wstColumn) {
26 this.wstColumn = wstColumn;
27 }
28
29 public WstColumn getWstColumn() {
30 return wstColumn;
31 }
32
33 public void setWstQRange(WstQRange wstQRange) {
34 this.wstQRange = wstQRange;
35 }
36
37 public WstQRange getWstQRange() {
38 return wstQRange;
39 }
40 }
41 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :
42

http://dive4elements.wald.intevation.org