Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
* <tr>
* <td>timeout</td>
* <td>Integer</td>
* <td>App defined timeout. Indicates how long of a timeout from the last action (i.e. scrolling message resets timeout).</td>
* <td>App defined timeout. Indicates how long of a timeout in milliseconds from the last action (i.e. scrolling message resets timeout).</td>
* <td>N</td>
* <td>minValue=1000; maxValue=65535; defValue=30000</td>
* <td>SmartDevice Link 1.0 </td>
Expand Down Expand Up @@ -166,10 +166,10 @@ public String getScrollableMessageBody() {
}

/**
* Sets an App defined timeout. Indicates how long of a timeout from the
* Sets an App defined timeout. Indicates how long of a timeout in milliseconds from the
* last action
*
* @param timeout an Integer value representing an App defined timeout
* @param timeout an Integer value representing an App defined timeout in milliseconds
* <p></p>
* <b>Notes</b>:Minval=0; Maxval=65535;Default=30000
*/
Expand All @@ -179,9 +179,9 @@ public ScrollableMessage setTimeout(Integer timeout) {
}

/**
* Gets an App defined timeout
* Gets an App defined timeout in milliseconds
*
* @return Integer -an Integer value representing an App defined timeout
* @return Integer -an Integer value representing an App defined timeout in milliseconds
*/
public Integer getTimeout() {
return getInteger(KEY_TIMEOUT);
Expand Down
10 changes: 5 additions & 5 deletions base/src/main/java/com/smartdevicelink/proxy/rpc/Slider.java
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
* <tr>
* <td>timeout</td>
* <td>String</td>
* <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>
* <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>
* <td>N</td>
* <td>Minvalue=0; Maxvalue=65535; Defvalue= 10000</td>
* <td>SmartDeviceLink 2.0</td>
Expand Down Expand Up @@ -255,9 +255,9 @@ public List<String> getSliderFooter() {
}

/**
* Sets an App defined timeout
* Sets an App defined timeout in milliseconds
*
* @param timeout an Integer value representing an App defined timeout
* @param timeout an Integer value representing an App defined timeout in milliseconds
* <p></p>
* <b>Notes: </b>Minvalue=0; Maxvalue=65535; Defvalue=10000
*/
Expand All @@ -267,9 +267,9 @@ public Slider setTimeout(Integer timeout) {
}

/**
* Gets an App defined timeout
* Gets an App defined timeout in milliseconds
*
* @return Integer -an Integer value representing an App defined timeout
* @return Integer -an Integer value representing an App defined timeout in milliseconds
*/
public Integer getTimeout() {
return getInteger(KEY_TIMEOUT);
Expand Down