comparison artifacts/src/main/java/org/dive4elements/river/artifacts/sinfo/flowdepth/WstInfo.java @ 8882:f762fadc5313

Further work on SINFO-FlowDepth
author gernotbelger
date Fri, 09 Feb 2018 16:11:47 +0100
parents 64ca63f79f6f
children 7a8c12706834
comparison
equal deleted inserted replaced
8881:6b93a2498e06 8882:f762fadc5313
14 */ 14 */
15 final class WstInfo { 15 final class WstInfo {
16 16
17 private final String label; 17 private final String label;
18 private final int year; 18 private final int year;
19 private final String source;
20 private final String gauge; 19 private final String gauge;
21 20
22 public WstInfo(final String label, final int year, final String source, final String gauge) { 21 public WstInfo(final String label, final int year, final String gauge) {
23 this.label = label; 22 this.label = label;
24 this.year = year; 23 this.year = year;
25 this.source = source;
26 this.gauge = gauge; 24 this.gauge = gauge;
27 } 25 }
28 26
29 public String getLabel() { 27 public String getLabel() {
30 return this.label; 28 return this.label;
32 30
33 public int getYear() { 31 public int getYear() {
34 return this.year; 32 return this.year;
35 } 33 }
36 34
37 public String getSource() {
38 return this.source;
39 }
40
41 public String getGauge() { 35 public String getGauge() {
42 return this.gauge; 36 return this.gauge;
43 } 37 }
44 } 38 }

http://dive4elements.wald.intevation.org