List of usage examples for org.apache.cordova CordovaPlugin subclass-usage
From source file com.cranberrygame.cordova.plugin.optionsmenu.OptionsMenu.java
public class OptionsMenu extends CordovaPlugin { private static final String LOG_TAG = "OptionsMenu"; protected CallbackContext callbackContextKeepCallback; private String menus; @Override
From source file com.cranberrygame.phonegap.plugin.ad.Util.java
public class Admob extends CordovaPlugin { private static final String LOG_TAG = "Admob"; // private String adUnit; private String adUnitFullScreen; private boolean isOverlap;
From source file com.cranberrygame.phonegap.plugin.Util.java
public class Game extends CordovaPlugin implements GameHelper.GameHelperListener { private String LOG_TAG = "Game"; private GameHelper mHelper; private CallbackContext loginCC; private CallbackContext getPlayerImageCC; private CallbackContext getPlayerScoreCC;
From source file com.cranberrygame.phonegap.plugin.NavigationBar.java
public class NavigationBar extends CordovaPlugin { private static final String LOG_TAG = "NavigationBar"; public void initialize(CordovaInterface cordova, CordovaWebView webView) { super.initialize(cordova, webView);
From source file com.cranberrygame.phonegap.plugin.OptionsMenu.java
public class OptionsMenu extends CordovaPlugin { private String menus; @Override public boolean execute(String action, JSONArray args, CallbackContext callbackContext) { PluginResult result = null;
From source file com.creare.notifications.Notifications.java
/**
* This class provides access to notifications on the device.
*
* Be aware that this implementation gets called on
* navigator.notification.{alert|confirm|prompt}, and that there is a separate
* implementation in org.apache.cordova.CordovaChromeClient that gets
From source file com.crittercism.plugin.CDVCrittercism.java
public class CDVCrittercism extends CordovaPlugin { public static final String ACTION_INIT = "crittercismInit"; public static final String ACTION_ADD_BREADCRUMB = "crittercismLeaveBreadcrumb"; public static final String ACTION_SET_USERNAME = "crittercismSetUsername"; public static final String ACTION_SET_VALUE_FOR_KEY = "crittercismSetValueForKey"; public static final String ACTION_LOG_HANDLED_EXCEPTION = "crittercismLogHandledException";
From source file com.ctis.cordova.plugin.IntermecPrinter.java
/** * Send html content to Intermec bluetooth printers */ public class IntermecPrinter extends CordovaPlugin { private CallbackContext cb;
From source file com.dachen.dgroupdoctorcompany.js.WhitelistPlugin.java
public class WhitelistPlugin extends CordovaPlugin { private static final String LOG_TAG = "WhitelistPlugin"; private Whitelist allowedNavigations; private Whitelist allowedIntents; private Whitelist allowedRequests;
From source file com.danielhalupka.imageviewer.ImageViewer.java
/** * * @author Dax */ public class ImageViewer extends CordovaPlugin {