Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/exports/ChartSection.java @ 2089:0da8874bd378
Added initial state to map artifact to be able to advance and step back.
The map artifact overrides describe() to have the complete UI information in the
describe response document.
flys-artifacts/trunk@3613 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Fri, 06 Jan 2012 12:02:10 +0000 |
parents | ca8997aa683e |
children | f84854eba0b3 |
line wrap: on
line source
package de.intevation.flys.exports; /** * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a> */ public class ChartSection extends TypeSection { public static final String TITLE_ATTR = "title"; public static final String SUBTITLE_ATTR = "subtitle"; public static final String DISPLAYGRID_ATTR = "display-grid"; public ChartSection() { super("chart"); } public void setTitle(String title) { setStringValue(TITLE_ATTR, title); } public String getTitle() { return getStringValue(TITLE_ATTR); } public void setSubtitle(String subtitle) { setStringValue(SUBTITLE_ATTR, subtitle); } public String getSubtitle() { return getStringValue(SUBTITLE_ATTR); } public void setDisplayGird(boolean displayGrid) { setBooleanValue(DISPLAYGRID_ATTR, displayGrid); } public Boolean getDisplayGrid() { return getBooleanValue(DISPLAYGRID_ATTR); } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :