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@171: * @author drewnak tim@171: * @author Tim Englich Changes and codecleanup tim@65: */ tim@65: public class ChartLabels { tim@65: /** tim@65: * tim@65: */ tim@86: private String title; ingo@331: ingo@331: /** ingo@331: * ingo@331: */ ingo@331: private String subtitle; ingo@331: tim@65: /** tim@65: * tim@65: */ tim@86: private String domainAxisLabel; tim@86: tim@65: /** tim@86: * Constructor tim@171: * tim@86: * @param title tim@86: * @param domainAxisLabel tim@65: */ ingo@331: public ChartLabels(String title, String subtitle, String domainAxisLabel) { ingo@331: this.title = title; ingo@331: this.subtitle = subtitle; tim@86: this.domainAxisLabel = domainAxisLabel; tim@65: } tim@65: tim@65: /** tim@65: * @return the title tim@65: */ tim@65: public String getTitle() { tim@86: return this.title; tim@65: } tim@65: ingo@331: ingo@331: /** ingo@331: * @return the subtitle ingo@331: */ ingo@331: public String getSubtitle() { ingo@331: return subtitle; ingo@331: } ingo@331: tim@65: /** tim@65: * @return the timeAxisLabel tim@65: */ tim@86: public String getDomainAxisLabel() { tim@86: return this.domainAxisLabel; tim@65: } ingo@331: }