You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: android/sdl_android/src/androidTest/java/com/smartdevicelink/managers/lifecycle/SystemCapabilityManagerTests.java
-1Lines changed: 0 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -733,7 +733,6 @@ public void testOnSystemCapabilityUpdatedForDISPLAYS() {
* <li>If omitted, third display line will be cleared</li>
278
-
* <li>Text is always centered</li>
279
-
* </ul>
245
+
* @param alertText3 a String value representing the text which is displayed in the third field during the Alert
280
246
* @since SmartDeviceLink 2.0
281
247
*/
282
248
publicAlertsetAlertText3(StringalertText3) {
@@ -310,27 +276,19 @@ public Alert setTtsChunks(List<TTSChunk> ttsChunks) {
310
276
/**
311
277
* Gets the duration of the displayed portion of the alert, in milliseconds
312
278
*
313
-
* @return Integer -an Integer value representing the duration of the
314
-
* displayed portion of the alert, in milliseconds
279
+
* @return Integer -an Integer value representing the duration of the displayed portion of the alert, in milliseconds
315
280
*/
316
281
publicIntegergetDuration() {
317
282
returngetInteger(KEY_DURATION);
318
283
}
319
284
320
285
/**
321
-
* <p>Sets the duration of the displayed portion of the alert, in milliseconds.
286
+
* Sets the duration of the displayed portion of the alert, in milliseconds.
322
287
* After this amount of time has passed, the display fields alertText1 and
323
288
* alertText2 will revert to what was displayed in those fields before the
324
-
* alert began</p>
289
+
* alert began
325
290
*
326
-
* @param duration the Integer values representing the duration time, in
327
-
* milliseconds
328
-
* <p>
329
-
* <b>Notes: </b></p>
330
-
* <ul>
331
-
* <li>Min Value: 3000; Max Value: 10000</li>
332
-
* <li>If omitted, the default is 5000 milliseconds</li>
333
-
* </ul>
291
+
* @param duration -an Integer value representing the duration of the displayed portion of the alert, in milliseconds
334
292
*/
335
293
publicAlertsetDuration(Integerduration) {
336
294
setParameters(KEY_DURATION, duration);
@@ -351,10 +309,7 @@ public Boolean getPlayTone() {
351
309
* Sets whether the alert tone should be played before the TTS (if any) is
352
310
* spoken
353
311
*
354
-
* @param playTone a Boolean value which specifies whether the alert tone should
355
-
* be played before the TTS (if any) is spoken
356
-
*
357
-
* <p> <b>Notes: </b>If omitted, default is true</p>
312
+
* @param playTone a Boolean value which specifies whether the alert tone should be played before the TTS (if any) is spoken. <p> <b>Notes: </b>If omitted, default is true</p>
358
313
*/
359
314
publicAlertsetPlayTone(BooleanplayTone) {
360
315
setParameters(KEY_PLAY_TONE, playTone);
@@ -364,8 +319,7 @@ public Alert setPlayTone(Boolean playTone) {
364
319
/**
365
320
* Gets the SoftButton List object
366
321
*
367
-
* @return List<SoftButton> -a List<SoftButton> representing the List
368
-
* object
322
+
* @return List<SoftButton> -a List<SoftButton> representing the List object
369
323
* @since SmartDeviceLink 2.0
370
324
*/
371
325
@SuppressWarnings("unchecked")
@@ -376,15 +330,7 @@ public List<SoftButton> getSoftButtons() {
376
330
/**
377
331
* Sets the SoftButtons
378
332
*
379
-
* @param softButtons a List<SoftButton> value
380
-
* <p>
381
-
* <b>Notes: </b></p>
382
-
* <ul>
383
-
* <li>If omitted on supported displays, the alert will not have
384
-
* any SoftButton</li>
385
-
* <li>ArrayMin: 0</li>
386
-
* <li>ArrayMax: 4</li>
387
-
* </ul>
333
+
* @param softButtons a List<SoftButton> value. If omitted on supported displays, the alert will not have any SoftButton. ArrayMin: 0. ArrayMax: 4.
@@ -438,10 +384,7 @@ public Alert setCancelID(Integer cancelID) {
438
384
* <p>Sets the Image
439
385
* If provided, defines the image to be shown along with the alert</p>
440
386
*
441
-
* @param alertIcon <p>an Image object representing the Image shown along with the alert</p>
442
-
* <p>
443
-
* <b>Notes: </b>If omitted on supported displays, no (or the
444
-
* default if applicable) icon will be displayed</p>
387
+
* @param alertIcon an Image object representing the Image shown along with the alert. <b>Notes: </b>If omitted on supported displays, no (or the default if applicable) icon will be displayed</p>
0 commit comments