本文整理汇总了Java中org.apache.cordova.CordovaPlugin.privateInitialize方法的典型用法代码示例。如果您正苦于以下问题:Java CordovaPlugin.privateInitialize方法的具体用法?Java CordovaPlugin.privateInitialize怎么用?Java CordovaPlugin.privateInitialize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.cordova.CordovaPlugin
的用法示例。
在下文中一共展示了CordovaPlugin.privateInitialize方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getPlugin
import org.apache.cordova.CordovaPlugin; //导入方法依赖的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) {
CordovaPlugin ret = pluginMap.get(service);
if (ret == null) {
PluginEntry pe = entryMap.get(service);
if (pe == null) {
return null;
}
if (pe.plugin != null) {
ret = pe.plugin;
} else {
ret = instantiatePlugin(pe.pluginClass);
}
ret.privateInitialize(ctx, app, app.getPreferences());
pluginMap.put(service, ret);
}
return ret;
}