Commit ef5cb49b by Sebastián Katzer

Add some docs

parent 6872b219
...@@ -46,10 +46,17 @@ import de.appplant.cordova.plugin.notification.*; ...@@ -46,10 +46,17 @@ import de.appplant.cordova.plugin.notification.*;
*/ */
public class LocalNotification extends CordovaPlugin { public class LocalNotification extends CordovaPlugin {
private static CordovaWebView webView = null; // Reference to the web view for static access
private static Boolean deviceready = false; private static CordovaWebView webView = null;
// Indicates if the device is ready (to receive events)
private static Boolean deviceready = false;
// To inform the user about the state of the app in callbacks
protected static Boolean isInBackground = true; protected static Boolean isInBackground = true;
private static ArrayList<String> eventQueue = new ArrayList<String>();
// Queues all events before deviceready
private static ArrayList<String> eventQueue = new ArrayList<String>();
/** /**
* Called after plugin construction and fields have been initialized. * Called after plugin construction and fields have been initialized.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment