comparison gnv-artifacts/src/main/java/de/intevation/gnv/chart/ChartLabels.java @ 65:8b75d01fa5b5

Insert Chart-Classes from old Repository gnv-artifacts/trunk@48 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Wed, 09 Sep 2009 12:02:09 +0000
parents
children 5d4f5d26bb7a
comparison
equal deleted inserted replaced
64:5db77e0a8594 65:8b75d01fa5b5
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 */
18 public class ChartLabels {
19 /**
20 *
21 */
22 private String mTitle;
23 /**
24 *
25 */
26 private String mTimeAxisLabel;
27 /**
28 *
29 */
30 private String mValueAxisLabel;
31 /**
32 *
33 */
34 public ChartLabels(String pTitle, String pTimeAxisLabel, String pValueAxisLabel) {
35 mTitle = pTitle;
36 mTimeAxisLabel = pTimeAxisLabel;
37 mValueAxisLabel = pValueAxisLabel;
38 }
39
40 /**
41 * @return the title
42 */
43 public String getTitle() {
44 return mTitle;
45 }
46
47 /**
48 * @param pTitle the title to set
49 */
50 public void setTitle(String pTitle) {
51 mTitle = pTitle;
52 }
53
54 /**
55 * @return the timeAxisLabel
56 */
57 public String getTimeAxisLabel() {
58 return mTimeAxisLabel;
59 }
60
61 /**
62 * @param pTimeAxisLabel the timeAxisLabel to set
63 */
64 public void setTimeAxisLabel(String pTimeAxisLabel) {
65 mTimeAxisLabel = pTimeAxisLabel;
66 }
67
68 /**
69 * @return the valueAxisLabel
70 */
71 public String getValueAxisLabel() {
72 return mValueAxisLabel;
73 }
74
75 /**
76 * @param pValueAxisLabel the valueAxisLabel to set
77 */
78 public void setValueAxisLabel(String pValueAxisLabel) {
79 mValueAxisLabel = pValueAxisLabel;
80 }
81
82 }

http://dive4elements.wald.intevation.org