◆ getAllCategories()
Definition at line 40 of file Notifications.java.
41 TreeSet<NotificationCategory>
set =
new TreeSet<>(
new NotificationCategoryComparator());
42 for(IElephantNotification notification : Instances.cached().byAnnotation(ElephantNotification.class, IElephantNotification.class)) {
43 set.addAll(notification.getAllCategories());
◆ getCategories()
Definition at line 32 of file Notifications.java.
33 TreeSet<NotificationCategory>
set =
new TreeSet<>(
new NotificationCategoryComparator());
34 for(IElephantNotification notification : Instances.cached().byAnnotation(ElephantNotification.class, IElephantNotification.class)) {
35 set.addAll(notification.getCategories());
◆ getCategory()
Definition at line 48 of file Notifications.java.
49 for(IElephantNotification notification : Instances.cached().byAnnotation(ElephantNotification.class, IElephantNotification.class)) {
50 NotificationCategory nc = notification.getCategory(
id);
51 if(nc !=
null)
return nc;
◆ reset()
static void org.turro.action.queue.Notifications.reset |
( |
| ) |
|
|
static |
Definition at line 56 of file Notifications.java.
57 for(IElephantNotification notification : Instances.cached().byAnnotation(ElephantNotification.class, IElephantNotification.class)) {
The documentation for this class was generated from the following file: