summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrettyWhite <geekman3454@protonmail.com>2019-05-30 16:21:07 -0400
committerBrettyWhite <geekman3454@protonmail.com>2019-05-30 16:21:07 -0400
commit6287c6a82a167ed2059b65eb636fce958285dd07 (patch)
tree60df40e703c969ebaea0b22f38a4778d1ec00d3d
parent622962cc6ef5b41ee281a187eca9467def0636aa (diff)
downloadsdl_android-6287c6a82a167ed2059b65eb636fce958285dd07.tar.gz
updata javadocs
-rw-r--r--base/src/main/java/com/smartdevicelink/managers/screen/choiceset/ChoiceCell.java4
-rw-r--r--base/src/main/java/com/smartdevicelink/managers/screen/choiceset/ChoiceSet.java6
2 files changed, 5 insertions, 5 deletions
diff --git a/base/src/main/java/com/smartdevicelink/managers/screen/choiceset/ChoiceCell.java b/base/src/main/java/com/smartdevicelink/managers/screen/choiceset/ChoiceCell.java
index 1a690ec43..136ee0741 100644
--- a/base/src/main/java/com/smartdevicelink/managers/screen/choiceset/ChoiceCell.java
+++ b/base/src/main/java/com/smartdevicelink/managers/screen/choiceset/ChoiceCell.java
@@ -112,7 +112,7 @@ public class ChoiceCell {
/**
* Maps to Choice.secondaryText. Optional secondary text of the cell, if available. Duplicates
- * within an `SDLChoiceSet` are permitted.
+ * within an `ChoiceSet` are permitted.
* @return Optional secondary text of the cell
*/
public String getSecondaryText() {
@@ -121,7 +121,7 @@ public class ChoiceCell {
/**
* @param secondaryText - Maps to Choice.secondaryText. Optional secondary text of the cell, if
- * available. Duplicates within an `SDLChoiceSet` are permitted.
+ * available. Duplicates within an `ChoiceSet` are permitted.
*/
public void setSecondaryText(String secondaryText) {
this.secondaryText = secondaryText;
diff --git a/base/src/main/java/com/smartdevicelink/managers/screen/choiceset/ChoiceSet.java b/base/src/main/java/com/smartdevicelink/managers/screen/choiceset/ChoiceSet.java
index 6a518efd1..335fddf9f 100644
--- a/base/src/main/java/com/smartdevicelink/managers/screen/choiceset/ChoiceSet.java
+++ b/base/src/main/java/com/smartdevicelink/managers/screen/choiceset/ChoiceSet.java
@@ -217,8 +217,8 @@ public class ChoiceSet {
* they are in a voice recognition interaction from your choice set of options. If this set is
* presented in a touch only interaction, this will be ignored.
*
- * Note: That while SDLVRHelpItem's position will be automatically set based on position in the
- * array, the image will need to uploaded by you before use using SDLFileManager.
+ * Note: That while VRHelpItem's position will be automatically set based on position in the
+ * array, the image will need to uploaded by you before use using the FileManager.
*
* @return The List of VR Help Items
*/
@@ -232,7 +232,7 @@ public class ChoiceSet {
* presented in a touch only interaction, this will be ignored.
*
* Note: That while SDLVRHelpItem's position will be automatically set based on position in the
- * array, the image will need to uploaded by you before use using SDLFileManager.
+ * array, the image will need to uploaded by you before use using the FileManager.
*/
public void setVrHelpList(List<VrHelpItem> vrHelpList) {