Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/chart/ChartLabels.java @ 376:d8f3ef441bf2
merged gnv-artifacts/0.3
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:13:47 +0200 |
parents | 1c427acb6c76 |
children | 79e80c289018 |
comparison
equal
deleted
inserted
replaced
293:6b0ef2324d02 | 376:d8f3ef441bf2 |
---|---|
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> Changes and codecleanup | |
18 */ | |
19 public class ChartLabels { | |
20 /** | |
21 * | |
22 */ | |
23 private String title; | |
24 | |
25 /** | |
26 * | |
27 */ | |
28 private String subtitle; | |
29 | |
30 /** | |
31 * | |
32 */ | |
33 private String domainAxisLabel; | |
34 | |
35 /** | |
36 * Constructor | |
37 * | |
38 * @param title | |
39 * @param domainAxisLabel | |
40 */ | |
41 public ChartLabels(String title, String subtitle, String domainAxisLabel) { | |
42 this.title = title; | |
43 this.subtitle = subtitle; | |
44 this.domainAxisLabel = domainAxisLabel; | |
45 } | |
46 | |
47 /** | |
48 * @return the title | |
49 */ | |
50 public String getTitle() { | |
51 return this.title; | |
52 } | |
53 | |
54 | |
55 /** | |
56 * @return the subtitle | |
57 */ | |
58 public String getSubtitle() { | |
59 return subtitle; | |
60 } | |
61 | |
62 /** | |
63 * @return the timeAxisLabel | |
64 */ | |
65 public String getDomainAxisLabel() { | |
66 return this.domainAxisLabel; | |
67 } | |
68 } |