summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Kast <julian@livio.com>2020-02-18 09:19:45 -0500
committerJulian Kast <julian@livio.com>2020-02-18 09:19:45 -0500
commitd72d473b1769f75b88acbdc46b59b777f8d3a2f3 (patch)
tree7a17677b7f45d43dfd11979ce54ace7744fde814
parent9285d45941bfcc54786dbcc501ef3b9992d6d593 (diff)
downloadsdl_android-d72d473b1769f75b88acbdc46b59b777f8d3a2f3.tar.gz
Fixed FIleManager Javadocs for android and JavaSE
-rw-r--r--android/sdl_android/src/main/java/com/smartdevicelink/managers/file/FileManager.java6
-rw-r--r--javaSE/src/main/java/com/smartdevicelink/managers/file/FileManager.java4
2 files changed, 5 insertions, 5 deletions
diff --git a/android/sdl_android/src/main/java/com/smartdevicelink/managers/file/FileManager.java b/android/sdl_android/src/main/java/com/smartdevicelink/managers/file/FileManager.java
index 8f6fab54b..3e1702346 100644
--- a/android/sdl_android/src/main/java/com/smartdevicelink/managers/file/FileManager.java
+++ b/android/sdl_android/src/main/java/com/smartdevicelink/managers/file/FileManager.java
@@ -75,9 +75,9 @@ public class FileManager extends BaseFileManager {
/**
* Constructor for FileManager
- * @param internalInterface ISdl
- * @param context Context
- * @param fileManagerConfig FileManagerConfig
+ * @param internalInterface an instance of the ISdl interface that can be used for common SDL operations (sendRpc, addRpcListener, etc)
+ * @param context an instances of Context interface to global information for application
+ * @param fileManagerConfig an instance of the FileManagerConfig gives access to artworkRetryCount and fileRetryCount to let us if those file types can be re-upload if they fail
*/
public FileManager(ISdl internalInterface, Context context, FileManagerConfig fileManagerConfig) {
// setup
diff --git a/javaSE/src/main/java/com/smartdevicelink/managers/file/FileManager.java b/javaSE/src/main/java/com/smartdevicelink/managers/file/FileManager.java
index cad2ce550..e3a36d7bf 100644
--- a/javaSE/src/main/java/com/smartdevicelink/managers/file/FileManager.java
+++ b/javaSE/src/main/java/com/smartdevicelink/managers/file/FileManager.java
@@ -64,8 +64,8 @@ public class FileManager extends BaseFileManager {
/**
* Constructor for FileManager
- * @param internalInterface ISdl
- * @param fileManagerConfig FileManagerConfig
+ * @param internalInterface an instance of the ISdl interface that can be used for common SDL operations (sendRpc, addRpcListener, etc)
+ * @param fileManagerConfig an instance of the FileManagerConfig gives access to artworkRetryCount and fileRetryCount to let us if those file types can be re-upload if they fail
*/
public FileManager(ISdl internalInterface, FileManagerConfig fileManagerConfig) {
// setup