comparison artifacts/src/main/java/org/dive4elements/river/artifacts/sinfo/flowdepth/WstInfo.java @ 8879:64ca63f79f6f

Further work on SINFO-FlowDepth
author gernotbelger
date Fri, 09 Feb 2018 13:27:10 +0100
parents 9f7a285b0ee3
children f762fadc5313
comparison
equal deleted inserted replaced
8878:ddd6523e0868 8879:64ca63f79f6f
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 21
20 public WstInfo(final String label, final int year) { 22 public WstInfo(final String label, final int year, final String source, final String gauge) {
21 this.label = label; 23 this.label = label;
22 this.year = year; 24 this.year = year;
25 this.source = source;
26 this.gauge = gauge;
23 } 27 }
24 28
25 public String getLabel() { 29 public String getLabel() {
26 return this.label; 30 return this.label;
27 } 31 }
28 32
29 public int getYear() { 33 public int getYear() {
30 return this.year; 34 return this.year;
31 } 35 }
36
37 public String getSource() {
38 return this.source;
39 }
40
41 public String getGauge() {
42 return this.gauge;
43 }
32 } 44 }

http://dive4elements.wald.intevation.org