Skip to content

Commit

Permalink
chore: added JavaDoc comments to overload PluginEntry methods
Browse files Browse the repository at this point in the history
  • Loading branch information
erisu committed Apr 18, 2021
1 parent f2a0f06 commit 0a2a590
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions framework/src/org/apache/cordova/PluginEntry.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,19 @@ public final class PluginEntry {

/**
* Constructs with a CordovaPlugin already instantiated.
*
* @param service The name of the service
* @param pluginClass The plugin class name
*/
public PluginEntry(String service, CordovaPlugin plugin) {
this(service, plugin.getClass().getName(), true, plugin);
}

/**
* @param service The name of the service
* @param plugin The CordovaPlugin already instantiated
* @param onload Create plugin object when HTML page is loaded
*/
public PluginEntry(String service, CordovaPlugin plugin, boolean onload) {
this(service, plugin.getClass().getName(), onload, plugin);
}
Expand All @@ -65,6 +73,12 @@ public PluginEntry(String service, String pluginClass, boolean onload) {
this(service, pluginClass, onload, null);
}

/**
* @param service The name of the service
* @param pluginClass The plugin class name
* @param onload Create plugin object when HTML page is loaded
* @param plugin The CordovaPlugin already instantiated
*/
private PluginEntry(String service, String pluginClass, boolean onload, CordovaPlugin plugin) {
this.service = service;
this.pluginClass = pluginClass;
Expand Down

0 comments on commit 0a2a590

Please sign in to comment.