comparison flys-client/src/main/java/org/dive4elements/river/client/shared/model/SedimentLoadInfoObjectImpl.java @ 5834:f507086aa94b

Repaired internal references.
author Sascha L. Teichmann <teichmann@intevation.de>
date Thu, 25 Apr 2013 12:31:32 +0200
parents flys-client/src/main/java/de/intevation/flys/client/shared/model/SedimentLoadInfoObjectImpl.java@1f98a3a89e13
children 821a02bbfb4e
comparison
equal deleted inserted replaced
5833:a2bdc0f524e8 5834:f507086aa94b
1 package de.intevation.flys.client.shared.model;
2
3
4 /**
5 * @author <a href="mailto:raimund.renkert@intevation.de">Raimund Renkert</a>
6 */
7 public class SedimentLoadInfoObjectImpl implements SedimentLoadInfoObject {
8
9 protected String description;
10 protected String dateString;
11
12 public SedimentLoadInfoObjectImpl() {
13 }
14
15 public SedimentLoadInfoObjectImpl(
16 String description,
17 String dateString
18 ) {
19 this.description = description;
20 this.dateString = dateString;
21 }
22
23 public String getDescription() {
24 return description;
25 }
26
27 public String getDate() {
28 return this.dateString;
29 }
30 }
31 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org