List of usage examples for org.apache.cordova CordovaPlugin subclass-usage
From source file com.example.scandevice.ScanDevice.java
public class ScanDevice extends CordovaPlugin { // Event types for callbacks private enum Event { ACTIVATE, DEACTIVATE, FAILURE }
From source file com.eyc.statusBarNotification.StatusBarNotification.java
public class StatusBarNotification extends CordovaPlugin { public static final String NOTIFY = "notify"; public static final String CLEAR = "clear"; /** * Executes the request and returns PluginResult
From source file com.ezartech.ezar.ezAR.java
/** * This class echoes a string called from JavaScript. */ public class ezAR extends CordovaPlugin { private static final String TAG = "ezAR";
From source file com.ezartech.ezar.flashlight.Flashlight.java
/** * */ public class Flashlight extends CordovaPlugin { private static final String TAG = "Flashlight";
From source file com.ezartech.ezar.videooverlay.ezAR.java
/** * Implements the ezAR VideoOverlay api for Android. */ public class ezAR extends CordovaPlugin { private static final String TAG = "ezAR";
From source file com.ezartech.ezar.videooverlay.VideoOverlayPlugin.java
/** * Implements the ezAR VideoOverlay api for Android. */ public class VideoOverlayPlugin extends CordovaPlugin implements Camera.PreviewCallback { private static final String TAG = "ezAR";
From source file com.facilityhero.plugin.camera.CameraLauncher.java
/** * This class launches the camera view, allows the user to take a picture, closes the camera view, * and returns the captured image. When the camera view is closed, the screen displayed before * the camera view was shown is redisplayed. */ public class CameraLauncher extends CordovaPlugin implements MediaScannerConnectionClient {
From source file com.facilityhero.plugin.mediacapture.Capture.java
public class Capture extends CordovaPlugin { private static final String VIDEO_3GPP = "video/3gpp"; private static final String VIDEO_MP4 = "video/mp4"; private static final String AUDIO_3GPP = "audio/3gpp"; private static final String IMAGE_JPEG = "image/jpeg";
From source file com.filetransfer.baidu.bcs.FileTransferBCS.java
public class FileTransferBCS extends CordovaPlugin { private static final String LOG_TAG = "FileTransferBCS"; private static final String LINE_START = "--"; private static final String LINE_END = "\r\n"; private static final String BOUNDARY = "+++++";
From source file com.firerunner.cordova.TTS.java
public class TTS extends CordovaPlugin implements OnInitListener, OnUtteranceCompletedListener { private static final String LOG_TAG = "TTS"; private static final int STOPPED = 0; private static final int INITIALIZING = 1; private static final int STARTED = 2;