comparison gnv-artifacts/src/main/java/de/intevation/gnv/chart/ChartLabels.java @ 127:f6f0e4ce4a35

merged gnv-artifacts/0.1
author Thomas Arendsen Hein <thomas@intevation.de>
date Fri, 28 Sep 2012 12:13:41 +0200
parents 5d4f5d26bb7a
children 7fb9441dd8af
comparison
equal deleted inserted replaced
49:94a07d1d9316 127:f6f0e4ce4a35
1 /* Copyright (C) 2007 con terra GmbH (http://www.conterra.de)
2 * All rights reserved
3 *
4 * $Id: ChartLabels.java,v 1.1 2007/12/10 13:57:13 drewnak Exp $
5 *
6 * created by: drewnak
7 * created at : 10.12.2007
8 * created at : 11:48:39
9 *
10 * modified by: $Author: drewnak $
11 * modified at: $Date: 2007/12/10 13:57:13 $
12 */
13 package de.intevation.gnv.chart;
14
15 /**
16 * @author drewnak
17 * @author Tim Englich <tim.englich@intevation.de>
18 * Changes and codecleanup
19 */
20 public class ChartLabels {
21 /**
22 *
23 */
24 private String title;
25 /**
26 *
27 */
28 private String domainAxisLabel;
29
30 /**
31 * Constructor
32 * @param title
33 * @param domainAxisLabel
34 */
35 public ChartLabels(String title, String domainAxisLabel) {
36 this.title = title;
37 this.domainAxisLabel = domainAxisLabel;
38 }
39
40 /**
41 * @return the title
42 */
43 public String getTitle() {
44 return this.title;
45 }
46
47
48 /**
49 * @return the timeAxisLabel
50 */
51 public String getDomainAxisLabel() {
52 return this.domainAxisLabel;
53 }
54 }

http://dive4elements.wald.intevation.org