comparison artifacts/src/main/java/org/dive4elements/river/artifacts/sinfo/flowdepth/WstInfo.java @ 8877:9f7a285b0ee3

Some work on SINFO FlowDepth
author gernotbelger
date Thu, 08 Feb 2018 18:48:24 +0100
parents
children 64ca63f79f6f
comparison
equal deleted inserted replaced
8876:23264d1a528f 8877:9f7a285b0ee3
1 /** Copyright (C) 2017 by Bundesanstalt für Gewässerkunde
2 * Software engineering by
3 * Björnsen Beratende Ingenieure GmbH
4 * Dr. Schumacher Ingenieurbüro für Wasser und Umwelt
5 *
6 * This file is Free Software under the GNU AGPL (>=v3)
7 * and comes with ABSOLUTELY NO WARRANTY! Check out the
8 * documentation coming with Dive4Elements River for details.
9 */
10 package org.dive4elements.river.artifacts.sinfo.flowdepth;
11
12 /**
13 * @author Gernot Belger
14 */
15 final class WstInfo {
16
17 private final String label;
18 private final int year;
19
20 public WstInfo(final String label, final int year) {
21 this.label = label;
22 this.year = year;
23 }
24
25 public String getLabel() {
26 return this.label;
27 }
28
29 public int getYear() {
30 return this.year;
31 }
32 }

http://dive4elements.wald.intevation.org