comparison artifact-database/src/main/java/org/dive4elements/artifactdatabase/data/StateData.java @ 473:d0ac790a6c89 dive4elements-move

Moved directories to org.dive4elements
author Sascha L. Teichmann <teichmann@intevation.de>
date Thu, 25 Apr 2013 10:57:18 +0200
parents artifact-database/src/main/java/de/intevation/artifactdatabase/data/StateData.java@93a774fe2bb4
children 415df0fc4fa1
comparison
equal deleted inserted replaced
472:783cc1b6b615 473:d0ac790a6c89
1 /*
2 * Copyright (c) 2011 by Intevation GmbH
3 *
4 * This program is free software under the LGPL (>=v2.1)
5 * Read the file LGPL.txt coming with the software for details
6 * or visit http://www.gnu.org/licenses/ if it does not exist.
7 */
8 package de.intevation.artifactdatabase.data;
9
10 import java.io.Serializable;
11
12
13 /**
14 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
15 */
16 public interface StateData extends Serializable {
17
18 /**
19 * Returns the name of the data object.
20 *
21 * @return the name.
22 */
23 public String getName();
24
25
26 /**
27 * Returns the description of the data object.
28 *
29 * @return the description of the data object.
30 */
31 public String getDescription();
32
33
34 /**
35 * Returns the type of the data object as string.
36 *
37 * @return the type as string.
38 */
39 public String getType();
40
41
42 /**
43 * Returns the value of the data object.
44 *
45 * @return the value.
46 */
47 public Object getValue();
48
49
50 /**
51 * Set the value of this data object.
52 *
53 * @param value The new value for this data object.
54 */
55 public void setValue(Object value);
56
57 public StateData deepCopy();
58 }
59 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 :

http://dive4elements.wald.intevation.org