view gnv-artifacts/src/main/java/de/intevation/gnv/state/ExportMode.java @ 823:499cfbbb61bc

Removed obsolet SuppressWarnings-Annotations. gnv-artifacts/trunk@910 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Tue, 13 Apr 2010 08:25:34 +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 :

http://dive4elements.wald.intevation.org