File tree Expand file tree Collapse file tree 3 files changed +12
-12
lines changed
src/main/java/org/htmlunit/cssparser/dom Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ public CSSValueImpl getHue() {
170170
171171 /**
172172 * Sets the hue part to a new value.
173- * @param hue the new CSSPrimitiveValue
173+ * @param hue the new CSSValueImpl
174174 */
175175 public void setHue (final CSSValueImpl hue ) {
176176 hue_ = hue ;
@@ -185,7 +185,7 @@ public CSSValueImpl getSaturation() {
185185
186186 /**
187187 * Sets the saturation part to a new value.
188- * @param saturation the new CSSPrimitiveValue
188+ * @param saturation the new CSSValueImpl
189189 */
190190 public void setSaturation (final CSSValueImpl saturation ) {
191191 saturation_ = saturation ;
@@ -200,7 +200,7 @@ public CSSValueImpl getLightness() {
200200
201201 /**
202202 * Sets the lightness part to a new value.
203- * @param lightness the new CSSPrimitiveValue
203+ * @param lightness the new CSSValueImpl
204204 */
205205 public void setLightness (final CSSValueImpl lightness ) {
206206 lightness_ = lightness ;
@@ -215,7 +215,7 @@ public CSSValueImpl getAlpha() {
215215
216216 /**
217217 * Sets the alpha part to a new value.
218- * @param alpha the new CSSPrimitiveValue
218+ * @param alpha the new CSSValueImpl
219219 */
220220 public void setAlpha (final CSSValueImpl alpha ) {
221221 alpha_ = alpha ;
Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ public CSSValueImpl getRed() {
181181
182182 /**
183183 * Sets the red part to a new value.
184- * @param red the new CSSPrimitiveValue
184+ * @param red the new CSSValueImpl
185185 */
186186 public void setRed (final CSSValueImpl red ) {
187187 red_ = red ;
@@ -196,7 +196,7 @@ public CSSValueImpl getGreen() {
196196
197197 /**
198198 * Sets the green part to a new value.
199- * @param green the new CSSPrimitiveValue
199+ * @param green the new CSSValueImpl
200200 */
201201 public void setGreen (final CSSValueImpl green ) {
202202 green_ = green ;
@@ -211,7 +211,7 @@ public CSSValueImpl getBlue() {
211211
212212 /**
213213 * Sets the blue part to a new value.
214- * @param blue the new CSSPrimitiveValue
214+ * @param blue the new CSSValueImpl
215215 */
216216 public void setBlue (final CSSValueImpl blue ) {
217217 blue_ = blue ;
@@ -226,7 +226,7 @@ public CSSValueImpl getAlpha() {
226226
227227 /**
228228 * Sets the alpha part to a new value.
229- * @param alpha the new CSSPrimitiveValue
229+ * @param alpha the new CSSValueImpl
230230 */
231231 public void setAlpha (final CSSValueImpl alpha ) {
232232 alpha_ = alpha ;
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ public CSSValueImpl getTop() {
123123
124124 /**
125125 * Sets the top part to a new value.
126- * @param top the new CSSPrimitiveValue
126+ * @param top the new CSSValueImpl
127127 */
128128 public void setTop (final CSSValueImpl top ) {
129129 top_ = top ;
@@ -138,7 +138,7 @@ public CSSValueImpl getRight() {
138138
139139 /**
140140 * Sets the right part to a new value.
141- * @param right the new CSSPrimitiveValue
141+ * @param right the new CSSValueImpl
142142 */
143143 public void setRight (final CSSValueImpl right ) {
144144 right_ = right ;
@@ -153,7 +153,7 @@ public CSSValueImpl getBottom() {
153153
154154 /**
155155 * Sets the bottom part to a new value.
156- * @param bottom the new CSSPrimitiveValue
156+ * @param bottom the new CSSValueImpl
157157 */
158158 public void setBottom (final CSSValueImpl bottom ) {
159159 bottom_ = bottom ;
@@ -168,7 +168,7 @@ public CSSValueImpl getLeft() {
168168
169169 /**
170170 * Sets the left part to a new value.
171- * @param left the new CSSPrimitiveValue
171+ * @param left the new CSSValueImpl
172172 */
173173 public void setLeft (final CSSValueImpl left ) {
174174 left_ = left ;
You can’t perform that action at this time.
0 commit comments