Mercurial > dive4elements > gnv-client
view gnv-artifacts/src/main/java/de/intevation/gnv/chart/ChartLabels.java @ 252:f1e7ddeef5bc
Added Validation if a given maxvalue is greater than a given minvalue issue19
gnv-artifacts/trunk@323 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Wed, 11 Nov 2009 15:54:31 +0000 |
parents | 7fb9441dd8af |
children | 1c427acb6c76 |
line wrap: on
line source
/* Copyright (C) 2007 con terra GmbH (http://www.conterra.de) * All rights reserved * * $Id: ChartLabels.java,v 1.1 2007/12/10 13:57:13 drewnak Exp $ * * created by: drewnak * created at : 10.12.2007 * created at : 11:48:39 * * modified by: $Author: drewnak $ * modified at: $Date: 2007/12/10 13:57:13 $ */ package de.intevation.gnv.chart; /** * @author drewnak * @author Tim Englich <tim.englich@intevation.de> Changes and codecleanup */ public class ChartLabels { /** * */ private String title; /** * */ private String domainAxisLabel; /** * Constructor * * @param title * @param domainAxisLabel */ public ChartLabels(String title, String domainAxisLabel) { this.title = title; this.domainAxisLabel = domainAxisLabel; } /** * @return the title */ public String getTitle() { return this.title; } /** * @return the timeAxisLabel */ public String getDomainAxisLabel() { return this.domainAxisLabel; } }