Skip to content

Commit 90f84ef

Browse files
committed
Add timeout units to Javadoc comments
1 parent b2b1e59 commit 90f84ef

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
* <tr>
7171
* <td>timeout</td>
7272
* <td>Integer</td>
73-
* <td>App defined timeout. Indicates how long of a timeout from the last action (i.e. scrolling message resets timeout).</td>
73+
* <td>App defined timeout. Indicates how long of a timeout in milliseconds from the last action (i.e. scrolling message resets timeout).</td>
7474
* <td>N</td>
7575
* <td>minValue=1000; maxValue=65535; defValue=30000</td>
7676
* <td>SmartDevice Link 1.0 </td>
@@ -166,10 +166,10 @@ public String getScrollableMessageBody() {
166166
}
167167

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

181181
/**
182-
* Gets an App defined timeout
182+
* Gets an App defined timeout in milliseconds
183183
*
184-
* @return Integer -an Integer value representing an App defined timeout
184+
* @return Integer -an Integer value representing an App defined timeout in milliseconds
185185
*/
186186
public Integer getTimeout() {
187187
return getInteger(KEY_TIMEOUT);

0 commit comments

Comments
 (0)