summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBretty White <geekman3454@protonmail.com>2018-05-30 11:36:21 -0400
committerBretty White <geekman3454@protonmail.com>2018-05-30 11:36:21 -0400
commit18c6f8c0181576a946bb5714261369914476090f (patch)
treeaf25704c89f388be2e032d98a4a89d64c6f43130
parent32fe26d8eb834a808279ea2ed8a77df4d20ea732 (diff)
downloadsdl_android-18c6f8c0181576a946bb5714261369914476090f.tar.gz
javadoc updates
-rw-r--r--sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/DeleteFile.java8
-rw-r--r--sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/ECallInfo.java8
-rw-r--r--sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/EmergencyEvent.java8
-rw-r--r--sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/GetDTCs.java10
-rw-r--r--sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/HeadLampStatus.java14
-rw-r--r--sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/MyKey.java20
-rw-r--r--sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/OnSystemRequest.java14
-rw-r--r--sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/PerformAudioPassThru.java22
-rw-r--r--sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/PerformInteraction.java21
-rw-r--r--sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/PermissionItem.java5
-rw-r--r--sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/PutFile.java13
-rw-r--r--sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/ReadDID.java25
-rw-r--r--sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/RegisterAppInterface.java20
-rw-r--r--sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/ResetGlobalProperties.java12
-rw-r--r--sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/ScrollableMessage.java12
-rw-r--r--sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/SetAppIcon.java9
-rw-r--r--sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/SetMediaClockTimer.java13
17 files changed, 79 insertions, 155 deletions
diff --git a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/DeleteFile.java b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/DeleteFile.java
index 382b9e8d8..c9a0e76c7 100644
--- a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/DeleteFile.java
+++ b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/DeleteFile.java
@@ -57,10 +57,7 @@ public class DeleteFile extends RPCRequest {
/**
* <p>Constructs a new DeleteFile object indicated by the Hashtable parameter</p>
- *
- *
- * @param hash
- * The Hashtable to use
+ * @param hash The Hashtable to use
*/
public DeleteFile(Hashtable<String, Object> hash) {
super(hash);
@@ -68,8 +65,7 @@ public class DeleteFile extends RPCRequest {
/**
* Constructs a new DeleteFile object
- * @param sdlFileName
- * a String value representing a file reference name
+ * @param sdlFileName a String value representing a file reference name
*/
public DeleteFile(@NonNull String sdlFileName) {
this();
diff --git a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/ECallInfo.java b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/ECallInfo.java
index a25f4bf33..b62620026 100644
--- a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/ECallInfo.java
+++ b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/ECallInfo.java
@@ -65,15 +65,13 @@ public class ECallInfo extends RPCStruct {
public ECallInfo() { }
/** Constructs a new ECallInfo object indicated by the Hashtable
* parameter
- * @param hash
- *
- * <p>The hash table to use</p>
+ * @param hash <p>The hash table to use</p>
*/
public ECallInfo(Hashtable<String, Object> hash) {
super(hash);
}
- /** Constructs a new ECallInfo object
- *
+ /**
+ * Constructs a new ECallInfo object
*/
public ECallInfo(@NonNull VehicleDataNotificationStatus eCallNotificationStatus, @NonNull VehicleDataNotificationStatus auxECallNotificationStatus, @NonNull ECallConfirmationStatus eCallConfirmationStatus) {
this();
diff --git a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/EmergencyEvent.java b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/EmergencyEvent.java
index 85e2b6368..0bc0a2e67 100644
--- a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/EmergencyEvent.java
+++ b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/EmergencyEvent.java
@@ -88,15 +88,13 @@ public class EmergencyEvent extends RPCStruct {
public EmergencyEvent() { }
/** Constructs a new EmergencyEvent object indicated by the Hashtable
* parameter
- * @param hash
- *
- * <p>The hash table to use</p>
+ * @param hash <p>The hash table to use</p>
*/
public EmergencyEvent(Hashtable<String, Object> hash) {
super(hash);
}
- /** Constructs a new EmergencyEvent object
- *
+ /**
+ * Constructs a new EmergencyEvent object
*/
public EmergencyEvent(@NonNull EmergencyEventType emergencyEventType, @NonNull FuelCutoffStatus fuelCutoffStatus, @NonNull VehicleDataEventStatus rolloverEvent, @NonNull Integer maximumChangeVelocity, @NonNull VehicleDataEventStatus multipleEvents) {
this();
diff --git a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/GetDTCs.java b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/GetDTCs.java
index ea3910a8f..23eeac0d4 100644
--- a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/GetDTCs.java
+++ b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/GetDTCs.java
@@ -71,8 +71,7 @@ public class GetDTCs extends RPCRequest {
* <p>Constructs a new GetDTCs object indicated by the Hashtable parameter
* </p>
*
- * @param hash
- * The Hashtable to use
+ * @param hash The Hashtable to use
*/
public GetDTCs(Hashtable<String, Object> hash) {
super(hash);
@@ -80,11 +79,8 @@ public class GetDTCs extends RPCRequest {
/**
* Constructs a new GetDTCs object
- * @param ecuName
- * an Integer value representing a name of the module to receive
- * the DTC form
- * <p>
- * <b>Notes:</p> </b>Minvalue:0; Maxvalue:65535
+ * @param ecuName an Integer value representing a name of the module to receive the DTC form <br>
+ * <b>Notes: </b>Minvalue:0; Maxvalue:65535
*/
public GetDTCs(@NonNull Integer ecuName) {
this();
diff --git a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/HeadLampStatus.java b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/HeadLampStatus.java
index e69c68d75..68ffc88ad 100644
--- a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/HeadLampStatus.java
+++ b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/HeadLampStatus.java
@@ -47,20 +47,20 @@ public class HeadLampStatus extends RPCStruct {
public static final String KEY_HIGH_BEAMS_ON = "highBeamsOn";
public static final String KEY_LOW_BEAMS_ON = "lowBeamsOn";
- /**Constructs a new HeadLampStatus object
- *
+ /**
+ * Constructs a new HeadLampStatus object
*/
public HeadLampStatus() {}
- /**<p> Constructs a new HeadLampStatus object indicated by the Hashtable
+ /**
+ * <p>Constructs a new HeadLampStatus object indicated by the Hashtable
* parameter</p>
- * @param hash
- * The hash table to use
+ * @param hash The hash table to use
*/
public HeadLampStatus(Hashtable<String, Object> hash) {
super(hash);
}
- /**Constructs a new HeadLampStatus object
- *
+ /**
+ * Constructs a new HeadLampStatus object
*/
public HeadLampStatus(@NonNull Boolean lowBeamsOn, @NonNull Boolean highBeamsOn) {
this();
diff --git a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/MyKey.java b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/MyKey.java
index daa75e41e..3393f527a 100644
--- a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/MyKey.java
+++ b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/MyKey.java
@@ -22,11 +22,11 @@ import com.smartdevicelink.proxy.rpc.enums.VehicleDataStatus;
* <td>Indicates whether e911 override is on.</td>
* </tr>
* </table>
- *
- *@since SmartDeviceLink 2.0
- *
- *@see GetVehicleData
- *@see OnVehicleData
+ *
+ *@since SmartDeviceLink 2.0
+ *
+ *@see GetVehicleData
+ *@see OnVehicleData
*@see VehicleDataStatus
*
*
@@ -39,13 +39,9 @@ public class MyKey extends RPCStruct {
*/
public MyKey() { }
/**
- * <p>
- * Constructs a new MyKey object indicated by the Hashtable
- * parameter
- * </p>
- *
- * @param hash
- * The Hashtable to use
+ * <p>Constructs a new MyKey object indicated by the Hashtable
+ * parameter</p>
+ * @param hash The Hashtable to use
*/
public MyKey(Hashtable<String, Object> hash) {
super(hash);
diff --git a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/OnSystemRequest.java b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/OnSystemRequest.java
index 7bfbe020b..a178b581f 100644
--- a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/OnSystemRequest.java
+++ b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/OnSystemRequest.java
@@ -77,7 +77,7 @@ import java.util.List;
* <td>minvalue: 0; maxvalue:100000000000</td>
* <td>SmartDeviceLink 2.3.2 </td>
* </tr>
- * </table>
+ * </table>
* @since SmartDeviceLink 2.3.2
*/
public class OnSystemRequest extends RPCNotification {
@@ -94,12 +94,11 @@ public class OnSystemRequest extends RPCNotification {
public static final String KEY_LENGTH = "length";
private String body;
- private Headers headers;
+ private Headers headers;
- /** Constructs a new OnSystemsRequest object
- *
+ /**
+ * Constructs a new OnSystemsRequest object
*/
-
public OnSystemRequest() {
super(FunctionID.ON_SYSTEM_REQUEST.toString());
}
@@ -113,10 +112,9 @@ public class OnSystemRequest extends RPCNotification {
setBulkData(bulkData);
}
- /** Constructs a new OnSystemsRequest object
- *
+ /**
+ * Constructs a new OnSystemsRequest object
*/
-
public OnSystemRequest(@NonNull RequestType requestType) {
this();
setRequestType(requestType);
diff --git a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/PerformAudioPassThru.java b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/PerformAudioPassThru.java
index 66387e565..bbd0c32e3 100644
--- a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/PerformAudioPassThru.java
+++ b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/PerformAudioPassThru.java
@@ -114,10 +114,8 @@ public class PerformAudioPassThru extends RPCRequest {
/**
* <p>Constructs a new PerformAudioPassThru object indicated by the Hashtable
* parameter</p>
- *
- *
- * @param hash
- * The Hashtable to use
+ *
+ * @param hash The Hashtable to use
*/
public PerformAudioPassThru(Hashtable<String, Object> hash) {
super(hash);
@@ -125,18 +123,10 @@ public class PerformAudioPassThru extends RPCRequest {
/**
* Constructs a new PerformAudioPassThru object
- * @param samplingRate
- * a SamplingRate value representing a 8 or 16 or 22 or 24 khz
- * @param maxDuration
- * an Integer value representing the maximum duration of audio
- * recording in millisecond
- * <p></p>
- * <b>Notes: </b>Minvalue:1; Maxvalue:1000000
- * @param bitsPerSample
- * a BitsPerSample value representing 8 bit or 16 bit
- * @param audioType
- * an audioType
- *
+ * @param samplingRate a SamplingRate value representing a 8 or 16 or 22 or 24 khz
+ * @param maxDuration an Integer value representing the maximum duration of audio recording in millisecond <b>Notes: </b>Minvalue:1; Maxvalue:1000000
+ * @param bitsPerSample a BitsPerSample value representing 8 bit or 16 bit
+ * @param audioType an audioType
*/
public PerformAudioPassThru(@NonNull SamplingRate samplingRate, @NonNull Integer maxDuration, @NonNull BitsPerSample bitsPerSample, @NonNull AudioType audioType) {
this();
diff --git a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/PerformInteraction.java b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/PerformInteraction.java
index 117ab4edb..9067edb98 100644
--- a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/PerformInteraction.java
+++ b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/PerformInteraction.java
@@ -129,27 +129,18 @@ public class PerformInteraction extends RPCRequest {
/**
* Constructs a new PerformInteraction object indicated by the Hashtable
* parameter
- *
- *
- * @param hash
- * The Hashtable to use
+ *
+ * @param hash The Hashtable to use
*/
public PerformInteraction(Hashtable<String, Object> hash) {
super(hash);
}
/**
* Constructs a new PerformInteraction object
- * @param initialText
- * a String value that Displayed when the interaction begins
- * @param interactionMode
- * indicate how user selects interaction choice (VR_ONLY,
- * MANUAL_ONLY or BOTH)
- * @param interactionChoiceSetIDList
- * -a List<Integer> representing an Array of one or more Choice
- * Set IDs. User can select any choice from any of the specified
- * Choice Sets
- * <p></p>
- * <b>Notes: </b>Min Value: 0; Max Vlaue: 2000000000
+ * @param initialText a String value that Displayed when the interaction begins
+ * @param interactionMode indicate how user selects interaction choice (VR_ONLY, MANUAL_ONLY or BOTH)
+ * @param interactionChoiceSetIDList a List<Integer> representing an Array of one or more Choice Set IDs. User can select any choice from any of the specified
+ * Choice Sets <b>Notes: </b>Min Value: 0; Max Vlaue: 2000000000
*/
public PerformInteraction(@NonNull String initialText, @NonNull InteractionMode interactionMode, @NonNull List<Integer> interactionChoiceSetIDList) {
this();
diff --git a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/PermissionItem.java b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/PermissionItem.java
index 943ddcc52..aad3af8eb 100644
--- a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/PermissionItem.java
+++ b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/PermissionItem.java
@@ -64,13 +64,10 @@ public class PermissionItem extends RPCStruct {
setParameterPermissions(parameterPermissions);
}
/**
- * <p>
* Constructs a new PermissionItem object indicated by the Hashtable
* parameter
- * </p>
*
- * @param hash
- * The Hashtable to use
+ * @param hash The Hashtable to use
*/
public PermissionItem(Hashtable<String, Object> hash) {
super(hash);
diff --git a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/PutFile.java b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/PutFile.java
index d9572d17e..0b13f0a1d 100644
--- a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/PutFile.java
+++ b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/PutFile.java
@@ -130,10 +130,8 @@ public class PutFile extends RPCRequest {
/**
* Constructs a new PutFile object indicated by the Hashtable parameter
- * <p></p>
*
- * @param hash
- * The Hashtable to use
+ * @param hash The Hashtable to use
*/
public PutFile(Hashtable<String, Object> hash) {
super(hash);
@@ -141,12 +139,9 @@ public class PutFile extends RPCRequest {
/**
* Constructs a new PutFile object
- * @param syncFileName
- * a String value representing a file reference name
- * <p></p>
- * <b>Notes: </b>Maxlength=500, however the max file name length may vary based on remote filesystem limitations
- * @param fileType
- * a FileType value representing a selected file type
+ * @param syncFileName a String value representing a file reference name
+ * <b>Notes: </b>Maxlength=500, however the max file name length may vary based on remote filesystem limitations
+ * @param fileType a FileType value representing a selected file type
*/
public PutFile(@NonNull String syncFileName, @NonNull FileType fileType) {
this();
diff --git a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/ReadDID.java b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/ReadDID.java
index 7d7df51f2..7d62cf019 100644
--- a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/ReadDID.java
+++ b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/ReadDID.java
@@ -82,10 +82,8 @@ public class ReadDID extends RPCRequest {
/**
* Constructs a new ReadDID object indicated by the Hashtable parameter
- * <p></p>
*
- * @param hash
- * The Hashtable to use
+ * @param hash The Hashtable to use
*/
public ReadDID(Hashtable<String, Object> hash) {
super(hash);
@@ -93,19 +91,14 @@ public class ReadDID extends RPCRequest {
/**
* Constructs a new ReadDID object
- * @param ecuName
- * an Integer value representing the ID of the vehicle module
- * <p></p>
- * <b>Notes: </b>Minvalue:0; Maxvalue:65535
- * @param didLocation
- * a List<Integer> value representing raw data from vehicle
- * data DID location(s)
- * <p></p>
- * <b>Notes: </b>
- * <ul>
- * <li>Minvalue:0; Maxvalue:65535</li>
- * <li>ArrayMin:0; ArrayMax:1000</li>
- * </ul>
+ * @param ecuName an Integer value representing the ID of the vehicle module
+ * <b>Notes: </b>Minvalue:0; Maxvalue:65535
+ * @param didLocation a List<Integer> value representing raw data from vehicle data DID location(s) <br>
+ * <b>Notes: </b>
+ * <ul>
+ * <li>Minvalue:0; Maxvalue:65535</li>
+ * <li>ArrayMin:0; ArrayMax:1000</li>
+ * </ul>
*/
public ReadDID(@NonNull Integer ecuName, @NonNull List<Integer> didLocation) {
this();
diff --git a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/RegisterAppInterface.java b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/RegisterAppInterface.java
index ee5643efb..970613ccf 100644
--- a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/RegisterAppInterface.java
+++ b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/RegisterAppInterface.java
@@ -247,10 +247,7 @@ public class RegisterAppInterface extends RPCRequest {
}
/**
* Constructs a new RegisterAppInterface object
- * @param syncMsgVersion
- * a SdlMsgVersion object representing version of the SDL&reg;
- * SmartDeviceLink interface
- * <p></p>
+ * @param syncMsgVersion a SdlMsgVersion object representing version of the SDL&reg; SmartDeviceLink interface <br>
* <b>Notes: </b>To be compatible, app msg major version number
* must be less than or equal to SDL&reg; major version number.
* If msg versions are incompatible, app has 20 seconds to
@@ -262,9 +259,7 @@ public class RegisterAppInterface extends RPCRequest {
* RegisterAppInterface response). However, the minor version
* number sent from the app to SDL&reg; (in RegisterAppInterface
* request) is ignored by SDL&reg;
- * @param appName
- * a String value representing the Mobile Application's Name
- * <p></p>
+ * @param appName a String value representing the Mobile Application's Name <br>
* <b>Notes: </b>
* <ul>
* <li>Must be 1-100 characters in length</li>
@@ -272,15 +267,10 @@ public class RegisterAppInterface extends RPCRequest {
* the name or any synonym of any currently-registered
* application</li>
* </ul>
- * @param isMediaApplication
- * a Boolean value
- * @param languageDesired
- * a Language Enumeration
+ * @param isMediaApplication a Boolean value
+ * @param languageDesired a Language Enumeration
* @param hmiDisplayLanguageDesired
- * @param appID
- * a String value representing a unique ID, which an app will be
- * given when approved
- * <p></p>
+ * @param appID a String value representing a unique ID, which an app will be given when approved <br>
* <b>Notes: </b>Maxlength = 100
*/
public RegisterAppInterface(@NonNull SdlMsgVersion syncMsgVersion, @NonNull String appName, @NonNull Boolean isMediaApplication,
diff --git a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/ResetGlobalProperties.java b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/ResetGlobalProperties.java
index 78e0423f7..2adb03ec1 100644
--- a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/ResetGlobalProperties.java
+++ b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/ResetGlobalProperties.java
@@ -70,21 +70,17 @@ public class ResetGlobalProperties extends RPCRequest {
/**
* Constructs a new ResetGlobalProperties object indicated by the Hashtable
* parameter
- *
- *
- * @param hash
- * The Hashtable to use
+ *
+ * @param hash The Hashtable to use
*/
public ResetGlobalProperties(Hashtable<String, Object> hash) {
super(hash);
}
/**
* Constructs a new ResetGlobalProperties object
- * @param properties
- * a List<GlobalProperty> An array of one or more
+ * @param properties a List<GlobalProperty> An array of one or more
* GlobalProperty enumeration elements indicating which global
- * properties to reset to their default value
- * <p></p>
+ * properties to reset to their default value <br>
* <b>Notes: </b>Array must have at least one element
*/
public ResetGlobalProperties(@NonNull List<GlobalProperty> properties) {
diff --git a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/ScrollableMessage.java b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/ScrollableMessage.java
index 5408365ea..8f249ffe0 100644
--- a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/ScrollableMessage.java
+++ b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/ScrollableMessage.java
@@ -67,7 +67,7 @@ import java.util.List;
* <p>REJECTED </p>
* <p>ABORTED</p>
*
- * @see scrollableMessageBody
+ * @see scrollableMessageBody
* @see TextFieldName
*/
public class ScrollableMessage extends RPCRequest {
@@ -87,8 +87,7 @@ public class ScrollableMessage extends RPCRequest {
* parameter
* <p></p>
*
- * @param hash
- * The Hashtable to use
+ * @param hash The Hashtable to use
*/
public ScrollableMessage(Hashtable<String, Object> hash) {
super(hash);
@@ -96,11 +95,8 @@ public class ScrollableMessage extends RPCRequest {
/**
* Constructs a new ScrollableMessage object
- * @param scrollableMessageBody
- * a String value representing the Body of text that can include
- * newlines and tabs
- * <p></p>
- * <b>Notes: </b>Maxlength=500
+ * @param scrollableMessageBody a String value representing the Body of text that can include newlines and tabs <br>
+ * <b>Notes: </b>Maxlength=500
*/
public ScrollableMessage(@NonNull String scrollableMessageBody) {
this();
diff --git a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/SetAppIcon.java b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/SetAppIcon.java
index 765d78860..02ee081c2 100644
--- a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/SetAppIcon.java
+++ b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/SetAppIcon.java
@@ -60,8 +60,7 @@ public class SetAppIcon extends RPCRequest {
* Constructs a new SetAppIcon object indicated by the Hashtable parameter
* <p></p>
*
- * @param hash
- * The Hashtable to use
+ * @param hash The Hashtable to use
*/
public SetAppIcon(Hashtable<String, Object> hash) {
super(hash);
@@ -69,10 +68,8 @@ public class SetAppIcon extends RPCRequest {
/**
* Constructs a new SetAppIcon object
- * @param sdlFileName
- * a String value representing a file reference name
- * <p></p>
- * <b>Notes: </b>Maxlength=500, however the max file name length may vary based on remote filesystem limitations
+ * @param sdlFileName a String value representing a file reference name <br>
+ * <b>Notes: </b>Maxlength=500, however the max file name length may vary based on remote filesystem limitations
*/
public SetAppIcon(@NonNull String sdlFileName) {
this();
diff --git a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/SetMediaClockTimer.java b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/SetMediaClockTimer.java
index a009fee94..4ec73b9d7 100644
--- a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/SetMediaClockTimer.java
+++ b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/SetMediaClockTimer.java
@@ -87,24 +87,21 @@ public class SetMediaClockTimer extends RPCRequest {
* parameter
* <p></p>
*
- * @param hash
- * The Hashtable to use
+ * @param hash The Hashtable to use
*/
public SetMediaClockTimer(Hashtable<String, Object> hash) {
super(hash);
}
/**
* Constructs a new SetMediaClockTimer object
- * @param updateMode
- * a Enumeration value (COUNTUP/COUNTDOWN/PAUSE/RESUME)
- * <p></p>
- * <b>Notes: </b>
- * <ul>
+ * @param updateMode a Enumeration value (COUNTUP/COUNTDOWN/PAUSE/RESUME) <br>
+ * <b>Notes: </b>
+ * <ul>
* <li>When updateMode is PAUSE, RESUME or CLEAR, the start time value
* is ignored</li>
* <li>When updateMode is RESUME, the timer resumes counting from
* the timer's value when it was paused</li>
- * </ul>
+ * </ul>
*/
public SetMediaClockTimer(@NonNull UpdateMode updateMode) {
this();