diff options
author | Decebal Suiu <decebal.suiu@gmail.com> | 2017-09-07 23:07:11 +0300 |
---|---|---|
committer | Decebal Suiu <decebal.suiu@gmail.com> | 2017-09-07 23:07:11 +0300 |
commit | 8da54e051204e238d4886e313f62ce7dcf39ae69 (patch) | |
tree | bc37f99ed0f411da77a970e49c12c04fbe5f94a9 /pf4j | |
parent | c4bf168259f7492df57af69a8c2ff7a3a7662ba3 (diff) | |
parent | 810af0f48ea813118da0ec10974302e166a4ef50 (diff) | |
download | pf4j-8da54e051204e238d4886e313f62ce7dcf39ae69.tar.gz pf4j-8da54e051204e238d4886e313f62ce7dcf39ae69.zip |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'pf4j')
-rw-r--r-- | pf4j/src/main/java/ro/fortsoft/pf4j/PluginManager.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pf4j/src/main/java/ro/fortsoft/pf4j/PluginManager.java b/pf4j/src/main/java/ro/fortsoft/pf4j/PluginManager.java index 2efd9f3..793784b 100644 --- a/pf4j/src/main/java/ro/fortsoft/pf4j/PluginManager.java +++ b/pf4j/src/main/java/ro/fortsoft/pf4j/PluginManager.java @@ -53,10 +53,10 @@ public interface PluginManager { List<PluginWrapper> getStartedPlugins(); /** - * Retrieves the plugin with this id. + * Retrieves the plugin with this id, or null if the plugin does not exist. * - * @param pluginId - * @return the plugin + * @param pluginId The pluginId for the plugin you are trying to get. + * @return A PluginWrapper object for this plugin, or null if it does not exist. */ PluginWrapper getPlugin(String pluginId); |