comparison artifacts/src/main/java/org/dive4elements/river/artifacts/model/fixings/QWI.java @ 5838:5aa05a7a34b7

Rename modules to more fitting names.
author Sascha L. Teichmann <teichmann@intevation.de>
date Thu, 25 Apr 2013 15:23:37 +0200
parents flys-artifacts/src/main/java/org/dive4elements/river/artifacts/model/fixings/QWI.java@bd047b71ab37
children 4897a58c8746
comparison
equal deleted inserted replaced
5837:d9901a08d0a6 5838:5aa05a7a34b7
1 package org.dive4elements.river.artifacts.model.fixings;
2
3 import org.dive4elements.river.artifacts.model.QW;
4
5 import java.util.Date;
6
7 public class QWI
8 extends QW
9 {
10 protected String description;
11 protected Date date;
12 protected boolean interpolated;
13 protected int index;
14
15 public QWI() {
16 }
17
18 public QWI(double q, double w) {
19 super(q, w);
20 }
21
22 public QWI(
23 double q,
24 double w,
25 String description,
26 Date date,
27 boolean interpolated,
28 int index
29 ) {
30 super(q, w);
31 this.description = description;
32 this.date = date;
33 this.interpolated = interpolated;
34 this.index = index;
35 }
36
37 public Date getDate() {
38 return date;
39 }
40
41 public void setDate(Date date) {
42 this.date = date;
43 }
44
45 public String getDescription() {
46 return description;
47 }
48
49 public void setDescription(String description) {
50 this.description = description;
51 }
52
53 public boolean getInterpolated() {
54 return interpolated;
55 }
56
57 public void setInterpolated(boolean interpolated) {
58 this.interpolated = interpolated;
59 }
60
61 public int getIndex() {
62 return index;
63 }
64
65 public void setIndex(int index) {
66 this.index = index;
67 }
68 }
69 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org