Mercurial > dive4elements > gnv-client
view gnv-artifacts/src/main/java/de/intevation/gnv/state/DefaultExportMode.java @ 644:f3882e94c7e0
Changed the way of calculating the total distance in 'Horizontalprofil'-charts (issue171).
gnv-artifacts/trunk@730 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Thu, 04 Mar 2010 09:18:53 +0000 |
parents | 61f688a69a55 |
children | c4156275c1e1 |
line wrap: on
line source
package de.intevation.gnv.state; /** * @author Ingo Weinzierl (ingo.weinzierl@intevation.de) */ public class DefaultExportMode implements ExportMode { protected String name; protected String description; protected String mimeType; public DefaultExportMode(String name, String description, String mimeType){ this.name = name; this.description = description; this.mimeType = mimeType; } public String getName() { return name; } public String getDescription() { return description; } public String getMimeType() { return mimeType; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8: