comparison flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/fixings/QWD.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 9e0500d64524
children d7b0f52d6d04
comparison
equal deleted inserted replaced
3010:05a3fe8800b3 3011:ab81ffd1343e
1 package de.intevation.flys.artifacts.model.fixings; 1 package de.intevation.flys.artifacts.model.fixings;
2 2
3 import java.util.Date; 3 import java.util.Date;
4 4
5 import java.io.Serializable;
6
7 public class QWD 5 public class QWD
8 implements Serializable 6 extends QW
9 { 7 {
10 protected double q;
11 protected double w;
12 protected double deltaW; 8 protected double deltaW;
13 protected Date date;
14 protected String description;
15 9
16 public QWD() { 10 public QWD() {
17 } 11 }
18 12
19 public QWD( 13 public QWD(
20 double q, 14 double q,
21 double w, 15 double w,
22 double deltaW, 16 String description,
23 Date date, 17 Date date,
24 String description 18 double deltaW
25 ) { 19 ) {
26 this.q = q; 20 super(q, w, description, date);
27 this.w = q; 21 this.deltaW = deltaW;
28 this.deltaW = deltaW;
29 this.date = date;
30 this.description = description;
31 } 22 }
32 23
33 public double getQ() { 24 public double getDeltaW() {
34 return q; 25 return deltaW;
35 } 26 }
36 27
37 public void setQ(double q) { 28 public void setDeltaW(double deltaW) {
38 this.q = q; 29 this.deltaW = deltaW;
39 }
40
41 public double getW() {
42 return w;
43 }
44
45 public void setW(double w) {
46 this.w = w;
47 }
48
49 public Date getDate() {
50 return date;
51 }
52
53 public void setDate(Date date) {
54 this.date = date;
55 }
56
57 public String getDescription() {
58 return description;
59 }
60
61 public void setDescription(String description) {
62 this.description = description;
63 } 30 }
64 } 31 }
65 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : 32 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org