Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/state/ExportMode.java @ 875:5e9efdda6894
merged gnv-artifacts/1.0
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:13:56 +0200 |
parents | a5526908f92f |
children | f953c9a559d8 |
comparison
equal
deleted
inserted
replaced
722:bb3ffe7d719e | 875:5e9efdda6894 |
---|---|
1 package de.intevation.gnv.state; | |
2 | |
3 import java.io.Serializable; | |
4 | |
5 /** | |
6 * This interface defines basic methods which are necessary for exports. | |
7 * | |
8 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a> | |
9 */ | |
10 public interface ExportMode | |
11 extends Serializable | |
12 { | |
13 /** | |
14 * Return the export name (e.g. pdf, svg, image). | |
15 * | |
16 * @return the export name. | |
17 */ | |
18 public String getName(); | |
19 | |
20 /** | |
21 * Return the description for this export. | |
22 * | |
23 * @return the export description. | |
24 */ | |
25 public String getDescription(); | |
26 | |
27 /** | |
28 * Returns the mime type used by this export. | |
29 * | |
30 * @return export's mimetype. | |
31 */ | |
32 public String getMimeType(); | |
33 } | |
34 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : |