comparison flys-artifacts/src/main/java/de/intevation/flys/exports/StyledSeriesBuilder.java @ 3269:b2ea89a665bc

Fix issues in 'documentation'. flys-artifacts/trunk@4911 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Felix Wolfsteller <felix.wolfsteller@intevation.de>
date Tue, 10 Jul 2012 11:10:38 +0000
parents cbaa49896eca
children d9af29a4bb85
comparison
equal deleted inserted replaced
3268:38eb2b0d4f99 3269:b2ea89a665bc
58 58
59 /** 59 /**
60 * Add points to series (km to 1st dim, w to 2nd dim). 60 * Add points to series (km to 1st dim, w to 2nd dim).
61 * 61 *
62 * @param series Series to add points to. 62 * @param series Series to add points to.
63 * @param points Points to add to series. 63 * @param wkms WKms to add to series.
64 */ 64 */
65 public static void addPoints(XYSeries series, WKms wkms) { 65 public static void addPoints(XYSeries series, WKms wkms) {
66 if (wkms == null) { 66 if (wkms == null) {
67 return; 67 return;
68 } 68 }
77 77
78 /** 78 /**
79 * Add points to series (km to 1st dim, q to 2nd dim). 79 * Add points to series (km to 1st dim, q to 2nd dim).
80 * 80 *
81 * @param series Series to add points to. 81 * @param series Series to add points to.
82 * @param points Points to add to series. 82 * @param wqkms WQKms to add to series.
83 */ 83 */
84 public static void addPointsKmQ(XYSeries series, WQKms wqkms) { 84 public static void addPointsKmQ(XYSeries series, WQKms wqkms) {
85 if (wqkms == null) { 85 if (wqkms == null) {
86 return; 86 return;
87 } 87 }
97 /** 97 /**
98 * Add points to series (km to 1st dim, q to 2nd dim), adding points 98 * Add points to series (km to 1st dim, q to 2nd dim), adding points
99 * to achieve a step-like curve. 99 * to achieve a step-like curve.
100 * 100 *
101 * @param series Series to add points to. 101 * @param series Series to add points to.
102 * @param points Points to add to series. 102 * @param wqkms WQKms to add to series.
103 */ 103 */
104 public static void addStepPointsKmQ(XYSeries series, WQKms wqkms) { 104 public static void addStepPointsKmQ(XYSeries series, WQKms wqkms) {
105 if (wqkms == null) { 105 if (wqkms == null) {
106 return; 106 return;
107 } 107 }
127 127
128 /** 128 /**
129 * Add points to series (q to 1st dim, w to 2nd dim). 129 * Add points to series (q to 1st dim, w to 2nd dim).
130 * 130 *
131 * @param series Series to add points to. 131 * @param series Series to add points to.
132 * @param points Points to add to series. 132 * @param wqksm WQKms to add to series.
133 */ 133 */
134 public static void addPointsQW(XYSeries series, WQKms wqkms) { 134 public static void addPointsQW(XYSeries series, WQKms wqkms) {
135 if (wqkms == null) { 135 if (wqkms == null) {
136 return; 136 return;
137 } 137 }
146 146
147 /** 147 /**
148 * Add points to series (q to 1st dim, w to 2nd dim). 148 * Add points to series (q to 1st dim, w to 2nd dim).
149 * 149 *
150 * @param series Series to add points to. 150 * @param series Series to add points to.
151 * @param points Points to add to series. 151 * @param WWQQ WWQQ to add to series.
152 */ 152 */
153 public static void addPoints(XYSeries series, WWQQ wwqq) { 153 public static void addPoints(XYSeries series, WWQQ wwqq) {
154 if (wwqq == null) { 154 if (wwqq == null) {
155 return; 155 return;
156 } 156 }

http://dive4elements.wald.intevation.org