comparison gnv-artifacts/src/main/java/de/intevation/gnv/chart/ChartLabels.java @ 767:79401c871da4

Added and repaired javadoc in de.intevation.gnv.chart package. gnv-artifacts/trunk@823 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Wed, 24 Mar 2010 14:48:55 +0000
parents 79e80c289018
children 3f447e92024a
comparison
equal deleted inserted replaced
766:a23ce49423d5 767:79401c871da4
12 */ 12 */
13 package de.intevation.gnv.chart; 13 package de.intevation.gnv.chart;
14 14
15 /** 15 /**
16 * @author drewnak 16 * @author drewnak
17 * @author Tim Englich <tim.englich@intevation.de> Changes and codecleanup 17 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a> Changes and codecleanup
18 * @author Ingo Weinzierl <ingo.weinzierl@intevation.de> 18 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
19 */ 19 */
20 public class ChartLabels { 20 public class ChartLabels {
21 /** 21 /**
22 * 22 *
23 */ 23 */
24 private String title; 24 private String title;
25 25
26 /** 26 /**
27 * 27 *
45 45
46 46
47 /** 47 /**
48 * Constructor 48 * Constructor
49 * 49 *
50 * @param title 50 * @param title Title
51 * @param domainAxisLabel 51 * @param subtitle Subtitle
52 * @param domainAxisLabel X-axis label
52 */ 53 */
53 public ChartLabels(String title, String subtitle, String domainAxisLabel) { 54 public ChartLabels(String title, String subtitle, String domainAxisLabel) {
54 this(title, subtitle, domainAxisLabel, null); 55 this(title, subtitle, domainAxisLabel, null);
55 } 56 }
56 57
58 /**
59 * Constructor
60 *
61 * @param title Title
62 * @param subtitle Subtitle
63 * @param domainAxisLabel X-axis label
64 * @param rangeAxisLabel Y-axis label
65 */
57 public ChartLabels( 66 public ChartLabels(
58 String title, 67 String title,
59 String subtitle, 68 String subtitle,
60 String domainAxisLabel, 69 String domainAxisLabel,
61 String rangeAxisLabel 70 String rangeAxisLabel
62 ) { 71 ) {
63 this(title, subtitle, domainAxisLabel, rangeAxisLabel, null); 72 this(title, subtitle, domainAxisLabel, rangeAxisLabel, null);
64 } 73 }
65 74
66 75
76 /**
77 * Constructor
78 *
79 * @param title Title
80 * @param subtitle Subtitle
81 * @param domainAxisLabel X-axis label
82 * @param rangeAxisLabel Y-axis label
83 * @param parameterName Name of a given parameter in the chart.
84 */
67 public ChartLabels( 85 public ChartLabels(
68 String title, 86 String title,
69 String subtitle, 87 String subtitle,
70 String domainAxisLabel, 88 String domainAxisLabel,
71 String rangeAxisLabel, 89 String rangeAxisLabel,
99 public String getDomainAxisLabel() { 117 public String getDomainAxisLabel() {
100 return this.domainAxisLabel; 118 return this.domainAxisLabel;
101 } 119 }
102 120
103 121
122 /**
123 * @return the y-axis label
124 */
104 public String getRangeAxisLabel() { 125 public String getRangeAxisLabel() {
105 return this.rangeAxisLabel; 126 return this.rangeAxisLabel;
106 } 127 }
107 128
108 129
130 /**
131 * @return the parameter name
132 */
109 public String getParameterName() { 133 public String getParameterName() {
110 return this.parameterName; 134 return this.parameterName;
111 } 135 }
112 } 136 }
113 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 : 137 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 :

http://dive4elements.wald.intevation.org