comparison flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/fixings/QW.java @ 3011:ab81ffd1343e

FixA: Reactivated rewrite of the outlier checks. flys-artifacts/trunk@4576 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Mon, 04 Jun 2012 16:44:56 +0000
parents
children 23de6d678fba
comparison
equal deleted inserted replaced
3010:05a3fe8800b3 3011:ab81ffd1343e
1 package de.intevation.flys.artifacts.model.fixings;
2
3 import java.util.Date;
4
5 import java.io.Serializable;
6
7 public class QW
8 implements Serializable
9 {
10 protected double q;
11 protected double w;
12 protected String description;
13 protected Date date;
14
15 public QW() {
16 }
17
18 public QW(double q, double w) {
19 this.q = q;
20 this.w = w;
21 }
22
23 public QW(double q, double w, String description, Date date) {
24 this(q, w);
25 this.description = description;
26 this.date = date;
27 }
28
29 public double getQ() {
30 return q;
31 }
32
33 public void setQ(double q) {
34 this.q = q;
35 }
36
37 public double getW() {
38 return w;
39 }
40
41 public void setW(double w) {
42 this.w = w;
43 }
44
45 public Date getDate() {
46 return date;
47 }
48
49 public void setDate(Date date) {
50 this.date = date;
51 }
52
53 public String getDescription() {
54 return description;
55 }
56
57 public void setDescription(String description) {
58 this.description = description;
59 }
60 }
61 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org