Mercurial > dive4elements > gnv-client
view gnv-artifacts/src/main/java/de/intevation/gnv/chart/ChartLabels.java @ 74:3d73718aa1b8
Make the Interfaces Serializable to make them usable in the Artifactdatabase
gnv-artifacts/trunk@80 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Mon, 14 Sep 2009 10:37:00 +0000 |
parents | 8b75d01fa5b5 |
children | 5d4f5d26bb7a |
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 */ public class ChartLabels { /** * */ private String mTitle; /** * */ private String mTimeAxisLabel; /** * */ private String mValueAxisLabel; /** * */ public ChartLabels(String pTitle, String pTimeAxisLabel, String pValueAxisLabel) { mTitle = pTitle; mTimeAxisLabel = pTimeAxisLabel; mValueAxisLabel = pValueAxisLabel; } /** * @return the title */ public String getTitle() { return mTitle; } /** * @param pTitle the title to set */ public void setTitle(String pTitle) { mTitle = pTitle; } /** * @return the timeAxisLabel */ public String getTimeAxisLabel() { return mTimeAxisLabel; } /** * @param pTimeAxisLabel the timeAxisLabel to set */ public void setTimeAxisLabel(String pTimeAxisLabel) { mTimeAxisLabel = pTimeAxisLabel; } /** * @return the valueAxisLabel */ public String getValueAxisLabel() { return mValueAxisLabel; } /** * @param pValueAxisLabel the valueAxisLabel to set */ public void setValueAxisLabel(String pValueAxisLabel) { mValueAxisLabel = pValueAxisLabel; } }