public abstract class LocalNotificationsServiceBase extends java.lang.Object implements LocalNotificationsService
| Constructor and Description |
|---|
LocalNotificationsServiceBase() |
| Modifier and Type | Method and Description |
|---|---|
javafx.collections.ObservableList<Notification> |
getNotifications()
An Observable List of Notifications, that can be used to
add or remove notifications
If the notification is marked as scheduled, it won't be
added to the device
|
protected abstract void |
scheduleNotification(Notification notification)
Used by the platform-dependent implementation to scheduleNotification the notification
|
protected abstract void |
unscheduleNotification(Notification notification)
Used by the platform-dependent implementation to unscheduleNotification the notification
|
public final javafx.collections.ObservableList<Notification> getNotifications()
getNotifications in interface LocalNotificationsServiceprotected abstract void scheduleNotification(Notification notification)
notification - to be scheduledprotected abstract void unscheduleNotification(Notification notification)
notification - to be unscheduled