Skip to content

Commit ab50c0e

Browse files
committed
Add time units to Slider class
1 parent 90f84ef commit ab50c0e

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

  • base/src/main/java/com/smartdevicelink/proxy/rpc

base/src/main/java/com/smartdevicelink/proxy/rpc/Slider.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
* <tr>
9696
* <td>timeout</td>
9797
* <td>String</td>
98-
* <td>App defined timeout. Indicates how long of a timeout from the last action (i.e. sliding control resets timeout). If omitted, the value is set to 10000.</td>
98+
* <td>App defined timeout. Indicates how long of a timeout in milliseconds from the last action (i.e. sliding control resets timeout). If omitted, the value is set to 10000.</td>
9999
* <td>N</td>
100100
* <td>Minvalue=0; Maxvalue=65535; Defvalue= 10000</td>
101101
* <td>SmartDeviceLink 2.0</td>
@@ -255,9 +255,9 @@ public List<String> getSliderFooter() {
255255
}
256256

257257
/**
258-
* Sets an App defined timeout
258+
* Sets an App defined timeout in milliseconds
259259
*
260-
* @param timeout an Integer value representing an App defined timeout
260+
* @param timeout an Integer value representing an App defined timeout in milliseconds
261261
* <p></p>
262262
* <b>Notes: </b>Minvalue=0; Maxvalue=65535; Defvalue=10000
263263
*/
@@ -267,9 +267,9 @@ public Slider setTimeout(Integer timeout) {
267267
}
268268

269269
/**
270-
* Gets an App defined timeout
270+
* Gets an App defined timeout in milliseconds
271271
*
272-
* @return Integer -an Integer value representing an App defined timeout
272+
* @return Integer -an Integer value representing an App defined timeout in milliseconds
273273
*/
274274
public Integer getTimeout() {
275275
return getInteger(KEY_TIMEOUT);

0 commit comments

Comments
 (0)