Mercurial > dive4elements > gnv-client
view gnv-artifacts/src/main/java/de/intevation/gnv/state/ExportMode.java @ 817:3f447e92024a
Added JavaDoc package descriptions.
gnv-artifacts/trunk@902 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Mon, 12 Apr 2010 09:37:30 +0000 |
parents | a5526908f92f |
children | f953c9a559d8 |
line wrap: on
line source
package de.intevation.gnv.state; import java.io.Serializable; /** * This interface defines basic methods which are necessary for exports. * * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a> */ public interface ExportMode extends Serializable { /** * Return the export name (e.g. pdf, svg, image). * * @return the export name. */ public String getName(); /** * Return the description for this export. * * @return the export description. */ public String getDescription(); /** * Returns the mime type used by this export. * * @return export's mimetype. */ public String getMimeType(); } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :