tim@65: /* Copyright (C) 2007 con terra GmbH (http://www.conterra.de) tim@65: * All rights reserved tim@65: * tim@65: * $Id: ChartLabels.java,v 1.1 2007/12/10 13:57:13 drewnak Exp $ tim@65: * tim@65: * created by: drewnak tim@65: * created at : 10.12.2007 tim@65: * created at : 11:48:39 tim@65: * tim@65: * modified by: $Author: drewnak $ tim@65: * modified at: $Date: 2007/12/10 13:57:13 $ tim@65: */ tim@65: package de.intevation.gnv.chart; tim@65: tim@65: /** tim@65: * @author drewnak tim@65: */ tim@65: public class ChartLabels { tim@65: /** tim@65: * tim@65: */ tim@65: private String mTitle; tim@65: /** tim@65: * tim@65: */ tim@65: private String mTimeAxisLabel; tim@65: /** tim@65: * tim@65: */ tim@65: private String mValueAxisLabel; tim@65: /** tim@65: * tim@65: */ tim@65: public ChartLabels(String pTitle, String pTimeAxisLabel, String pValueAxisLabel) { tim@65: mTitle = pTitle; tim@65: mTimeAxisLabel = pTimeAxisLabel; tim@65: mValueAxisLabel = pValueAxisLabel; tim@65: } tim@65: tim@65: /** tim@65: * @return the title tim@65: */ tim@65: public String getTitle() { tim@65: return mTitle; tim@65: } tim@65: tim@65: /** tim@65: * @param pTitle the title to set tim@65: */ tim@65: public void setTitle(String pTitle) { tim@65: mTitle = pTitle; tim@65: } tim@65: tim@65: /** tim@65: * @return the timeAxisLabel tim@65: */ tim@65: public String getTimeAxisLabel() { tim@65: return mTimeAxisLabel; tim@65: } tim@65: tim@65: /** tim@65: * @param pTimeAxisLabel the timeAxisLabel to set tim@65: */ tim@65: public void setTimeAxisLabel(String pTimeAxisLabel) { tim@65: mTimeAxisLabel = pTimeAxisLabel; tim@65: } tim@65: tim@65: /** tim@65: * @return the valueAxisLabel tim@65: */ tim@65: public String getValueAxisLabel() { tim@65: return mValueAxisLabel; tim@65: } tim@65: tim@65: /** tim@65: * @param pValueAxisLabel the valueAxisLabel to set tim@65: */ tim@65: public void setValueAxisLabel(String pValueAxisLabel) { tim@65: mValueAxisLabel = pValueAxisLabel; tim@65: } tim@65: tim@65: }