File tree 3 files changed +12
-12
lines changed
src/main/java/org/htmlunit/cssparser/dom
3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ public CSSValueImpl getHue() {
170
170
171
171
/**
172
172
* Sets the hue part to a new value.
173
- * @param hue the new CSSPrimitiveValue
173
+ * @param hue the new CSSValueImpl
174
174
*/
175
175
public void setHue (final CSSValueImpl hue ) {
176
176
hue_ = hue ;
@@ -185,7 +185,7 @@ public CSSValueImpl getSaturation() {
185
185
186
186
/**
187
187
* Sets the saturation part to a new value.
188
- * @param saturation the new CSSPrimitiveValue
188
+ * @param saturation the new CSSValueImpl
189
189
*/
190
190
public void setSaturation (final CSSValueImpl saturation ) {
191
191
saturation_ = saturation ;
@@ -200,7 +200,7 @@ public CSSValueImpl getLightness() {
200
200
201
201
/**
202
202
* Sets the lightness part to a new value.
203
- * @param lightness the new CSSPrimitiveValue
203
+ * @param lightness the new CSSValueImpl
204
204
*/
205
205
public void setLightness (final CSSValueImpl lightness ) {
206
206
lightness_ = lightness ;
@@ -215,7 +215,7 @@ public CSSValueImpl getAlpha() {
215
215
216
216
/**
217
217
* Sets the alpha part to a new value.
218
- * @param alpha the new CSSPrimitiveValue
218
+ * @param alpha the new CSSValueImpl
219
219
*/
220
220
public void setAlpha (final CSSValueImpl alpha ) {
221
221
alpha_ = alpha ;
Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ public CSSValueImpl getRed() {
181
181
182
182
/**
183
183
* Sets the red part to a new value.
184
- * @param red the new CSSPrimitiveValue
184
+ * @param red the new CSSValueImpl
185
185
*/
186
186
public void setRed (final CSSValueImpl red ) {
187
187
red_ = red ;
@@ -196,7 +196,7 @@ public CSSValueImpl getGreen() {
196
196
197
197
/**
198
198
* Sets the green part to a new value.
199
- * @param green the new CSSPrimitiveValue
199
+ * @param green the new CSSValueImpl
200
200
*/
201
201
public void setGreen (final CSSValueImpl green ) {
202
202
green_ = green ;
@@ -211,7 +211,7 @@ public CSSValueImpl getBlue() {
211
211
212
212
/**
213
213
* Sets the blue part to a new value.
214
- * @param blue the new CSSPrimitiveValue
214
+ * @param blue the new CSSValueImpl
215
215
*/
216
216
public void setBlue (final CSSValueImpl blue ) {
217
217
blue_ = blue ;
@@ -226,7 +226,7 @@ public CSSValueImpl getAlpha() {
226
226
227
227
/**
228
228
* Sets the alpha part to a new value.
229
- * @param alpha the new CSSPrimitiveValue
229
+ * @param alpha the new CSSValueImpl
230
230
*/
231
231
public void setAlpha (final CSSValueImpl alpha ) {
232
232
alpha_ = alpha ;
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ public CSSValueImpl getTop() {
123
123
124
124
/**
125
125
* Sets the top part to a new value.
126
- * @param top the new CSSPrimitiveValue
126
+ * @param top the new CSSValueImpl
127
127
*/
128
128
public void setTop (final CSSValueImpl top ) {
129
129
top_ = top ;
@@ -138,7 +138,7 @@ public CSSValueImpl getRight() {
138
138
139
139
/**
140
140
* Sets the right part to a new value.
141
- * @param right the new CSSPrimitiveValue
141
+ * @param right the new CSSValueImpl
142
142
*/
143
143
public void setRight (final CSSValueImpl right ) {
144
144
right_ = right ;
@@ -153,7 +153,7 @@ public CSSValueImpl getBottom() {
153
153
154
154
/**
155
155
* Sets the bottom part to a new value.
156
- * @param bottom the new CSSPrimitiveValue
156
+ * @param bottom the new CSSValueImpl
157
157
*/
158
158
public void setBottom (final CSSValueImpl bottom ) {
159
159
bottom_ = bottom ;
@@ -168,7 +168,7 @@ public CSSValueImpl getLeft() {
168
168
169
169
/**
170
170
* Sets the left part to a new value.
171
- * @param left the new CSSPrimitiveValue
171
+ * @param left the new CSSValueImpl
172
172
*/
173
173
public void setLeft (final CSSValueImpl left ) {
174
174
left_ = left ;
You can’t perform that action at this time.
0 commit comments