本文整理汇总了Java中org.apache.cordova.PluginEntry.createPlugin方法的典型用法代码示例。如果您正苦于以下问题:Java PluginEntry.createPlugin方法的具体用法?Java PluginEntry.createPlugin怎么用?Java PluginEntry.createPlugin使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.cordova.PluginEntry
的用法示例。
在下文中一共展示了PluginEntry.createPlugin方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: startupPlugins
import org.apache.cordova.PluginEntry; //导入方法依赖的package包/类
/**
* Create plugins objects that have onload set.
*/
public void startupPlugins() {
for (PluginEntry entry : this.entries.values()) {
if (entry.onload) {
entry.createPlugin(this.app, this.ctx);
}
}
}
示例2: getPlugin
import org.apache.cordova.PluginEntry; //导入方法依赖的package包/类
/**
* Get the plugin object that implements the service.
* If the plugin object does not already exist, then create it.
* If the service doesn't exist, then return null.
*
* @param service The name of the service.
* @return CordovaPlugin or null
*/
public CordovaPlugin getPlugin(String service) {
PluginEntry entry = this.entries.get(service);
if (entry == null) {
return null;
}
CordovaPlugin plugin = entry.plugin;
if (plugin == null) {
plugin = entry.createPlugin(this.app, this.ctx);
}
return plugin;
}