File tree Expand file tree Collapse file tree
base/src/main/java/com/smartdevicelink/proxy/rpc Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -311,7 +311,7 @@ public OnSystemRequest setFileType(FileType fileType) {
311311
312312 /**
313313 * @param offset of the data attached
314- * @deprecated as of SmartDeviceLink 4.0
314+ * @deprecated as of SmartDeviceLink 4.0. Use {@link #setOffset(Long)} instead.
315315 */
316316 public OnSystemRequest setOffset (Integer offset ) {
317317 if (offset == null ) {
@@ -377,7 +377,7 @@ public Long getLength() {
377377
378378 /**
379379 * @param length of the data attached
380- * @deprecated as of SmartDeviceLink 4.0
380+ * @deprecated as of SmartDeviceLink 4.0. Use {@link #setLength(Long)} instead.
381381 */
382382 public OnSystemRequest setLength (Integer length ) {
383383 if (length == null ) {
Original file line number Diff line number Diff line change @@ -268,7 +268,7 @@ public byte[] getFileData() {
268268
269269 /**
270270 * @param offset Optional offset in bytes for resuming partial data chunks
271- * @deprecated as of SmartDeviceLink 4.0
271+ * @deprecated as of SmartDeviceLink 4.0. Use {@link #setOffset(Long)} instead.
272272 */
273273 public PutFile setOffset (Integer offset ) {
274274 if (offset == null ) {
@@ -305,7 +305,7 @@ public Long getOffset() {
305305 /**
306306 * @param length Optional length in bytes for resuming partial data chunks. If offset is set to 0, then length is
307307 * the total length of the file to be downloaded
308- * @deprecated as of SmartDeviceLink 4.0
308+ * @deprecated as of SmartDeviceLink 4.0. Use {@link #setLength(Long)} instead.
309309 */
310310 public PutFile setLength (Integer length ) {
311311 if (length == null ) {
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ public Integer getId() {
132132 * Use getTimestamps
133133 *
134134 * @return
135- * @deprecated 4.0.2
135+ * @deprecated in 4.0.2. Use {@link #getTimestamps()}()} instead.
136136 */
137137 @ Deprecated
138138 public List <Long > getTs () {
@@ -170,7 +170,7 @@ public TouchEvent setTimestamps(@NonNull List<Long> ts) {
170170 * Use setTimestamps.
171171 *
172172 * @param ts
173- * @deprecated 4.0.2
173+ * @deprecated in 4.0.2. Use {@link #setTimestamps(List)} instead.
174174 */
175175 @ Deprecated
176176 public TouchEvent setTs (List <Long > ts ) {
@@ -182,7 +182,7 @@ public TouchEvent setTs(List<Long> ts) {
182182 * Use getTouchCoordinates
183183 *
184184 * @return
185- * @deprecated 4.0.2
185+ * @deprecated in 4.0.2. Use {@link #getTouchCoordinates()} instead.
186186 */
187187 @ Deprecated
188188 public List <TouchCoord > getC () {
@@ -198,7 +198,7 @@ public List<TouchCoord> getTouchCoordinates() {
198198 * Use setTouchCoordinates
199199 *
200200 * @return
201- * @deprecated 4.0.2
201+ * @deprecated in 4.0.2. Use {@link #setTouchCoordinates(List)} instead.
202202 */
203203 @ Deprecated
204204 public TouchEvent setC (List <TouchCoord > c ) {
You can’t perform that action at this time.
0 commit comments