Commit ef5cb49b by Sebastián Katzer

Add some docs

parent 6872b219
...@@ -46,9 +46,16 @@ import de.appplant.cordova.plugin.notification.*; ...@@ -46,9 +46,16 @@ import de.appplant.cordova.plugin.notification.*;
*/ */
public class LocalNotification extends CordovaPlugin { public class LocalNotification extends CordovaPlugin {
// Reference to the web view for static access
private static CordovaWebView webView = null; private static CordovaWebView webView = null;
// Indicates if the device is ready (to receive events)
private static Boolean deviceready = false; 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;
// Queues all events before deviceready
private static ArrayList<String> eventQueue = new ArrayList<String>(); private static ArrayList<String> eventQueue = new ArrayList<String>();
/** /**
......
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