comparison artifact-database/src/main/java/de/intevation/artifactdatabase/data/StateData.java @ 104:26bfff409dd3

Added interfaces and engines used in concrete artifact packages. artifacts/trunk@1289 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Thu, 03 Feb 2011 18:00:41 +0000
parents
children 33271242e303
comparison
equal deleted inserted replaced
103:1282cf96d3eb 104:26bfff409dd3
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 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 :

http://dive4elements.wald.intevation.org