Mercurial > dive4elements > framework
comparison artifact-database/src/main/java/de/intevation/artifactdatabase/state/Output.java @ 209:1a3fb29b8b2e
Enhanced the abstract state: the output modes are read now.
artifacts/trunk@1539 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Tue, 22 Mar 2011 16:06:35 +0000 |
parents | |
children | 41404961c804 |
comparison
equal
deleted
inserted
replaced
208:8ea4d0824d8f | 209:1a3fb29b8b2e |
---|---|
1 package de.intevation.artifactdatabase.state; | |
2 | |
3 | |
4 /** | |
5 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a> | |
6 */ | |
7 public interface Output { | |
8 | |
9 /** | |
10 * Retrieve the name of this output mode. | |
11 * | |
12 * @return the name of this output mode. | |
13 */ | |
14 public String getName(); | |
15 | |
16 /** | |
17 * Retrieve the description of an output. | |
18 * | |
19 * @return the description. | |
20 */ | |
21 public String getDescription(); | |
22 | |
23 /** | |
24 * Retrieve the mimetype used for the output. | |
25 * | |
26 * @return the mimetype. | |
27 */ | |
28 public String getMimeType(); | |
29 } | |
30 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 : |