List of usage examples for org.apache.cordova CordovaWebViewEngine interface-usage
From source file com.zsxsoft.cordova.x5.X5WebViewEngine.java
/**
* Glue class between CordovaWebView (main Cordova logic) and SystemWebView (the actual View).
* We make the Engine separate from the actual View so that:
* A) We don't need to worry about WebView methods clashing with CordovaWebViewEngine methods
* (e.g.: goBack() is void for WebView, and boolean for CordovaWebViewEngine)
* B) Separating the actual View from the Engine makes API surfaces smaller.
From source file org.crosswalk.engine.XWalkWebViewEngine.java
/** * Glue class between CordovaWebView (main Cordova logic) and XWalkCordovaView (the actual View). */ public class XWalkWebViewEngine implements CordovaWebViewEngine { public static final String TAG = "XWalkWebViewEngine";
From source file org.jeremyup.cordova.x5engine.X5WebViewEngine.java
/**
* Glue class between CordovaWebView (main Cordova logic) and SystemWebView (the actual View).
* We make the Engine separate from the actual View so that:
* A) We don't need to worry about WebView methods clashing with CordovaWebViewEngine methods
* (e.g.: goBack() is void for WebView, and boolean for CordovaWebViewEngine)
* B) Separating the actual View from the Engine makes API surfaces smaller.