comparison flys-client/src/main/java/org/dive4elements/river/client/shared/model/DataItem.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/DataItem.java@fa0aad20af53
children 821a02bbfb4e
comparison
equal deleted inserted replaced
5833:a2bdc0f524e8 5834:f507086aa94b
1 package de.intevation.flys.client.shared.model;
2
3 import java.io.Serializable;
4
5
6 /**
7 * A DataItem represents a concrete item that might be selected, chosen or
8 * inserted by the user.
9 *
10 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
11 */
12 public interface DataItem extends Serializable {
13
14 /**
15 * Returns the label of the item.
16 *
17 * @return the label.
18 */
19 public String getLabel();
20
21
22 /**
23 * Returns the description of the item.
24 *
25 * @return the description;
26 */
27 public String getDescription();
28
29
30 /**
31 * Returns the value of the item.
32 *
33 * @return the value.
34 */
35 public String getStringValue();
36 }
37 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org