comparison gnv/src/main/java/de/intevation/gnv/artifactdatabase/objects/ExportMode.java @ 690:254f062e334b

Added JavaDoc. gnv/trunk@908 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Mon, 12 Apr 2010 16:45:16 +0000
parents 57fa8019fbdc
children af22fa5567a6
comparison
equal deleted inserted replaced
689:8487581dfe3b 690:254f062e334b
1 package de.intevation.gnv.artifactdatabase.objects; 1 package de.intevation.gnv.artifactdatabase.objects;
2 2
3 import java.io.Serializable; 3 import java.io.Serializable;
4 4
5 /** 5 /**
6 * An <code>ExportMode</code> describes a specific format of an output mode
7 * (e.g. pdf, svg, image).
8 *
6 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a> 9 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
7 */ 10 */
8 public interface ExportMode 11 public interface ExportMode
9 extends Serializable 12 extends Serializable
10 { 13 {
14 /**
15 * Returns the name of this export mode.
16 *
17 * @return the name.
18 */
11 public String getName(); 19 public String getName();
20
21 /**
22 * Returns the description of this export mode.
23 *
24 * @return the description.
25 */
12 public String getDescription(); 26 public String getDescription();
27
28 /**
29 * Returns the mimetype used for this export mode.
30 *
31 * @return the mimetype.
32 */
13 public String getMimeType(); 33 public String getMimeType();
14 } 34 }
15 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8: 35 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org