From 04f0ab3da4f5416975aaf468939f4b731cc6db5b Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Sun, 14 Nov 2010 15:36:11 +0100 Subject: [PATCH] Add accessor for the NotificationManager. --- .../sone/template/NotificationManagerAccessor.java | 61 ++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 src/main/java/net/pterodactylus/sone/template/NotificationManagerAccessor.java diff --git a/src/main/java/net/pterodactylus/sone/template/NotificationManagerAccessor.java b/src/main/java/net/pterodactylus/sone/template/NotificationManagerAccessor.java new file mode 100644 index 0000000..1c27b29 --- /dev/null +++ b/src/main/java/net/pterodactylus/sone/template/NotificationManagerAccessor.java @@ -0,0 +1,61 @@ +/* + * Sone - NotificationManagerAccessor.java - Copyright © 2010 David Roden + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package net.pterodactylus.sone.template; + +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; + +import net.pterodactylus.util.notify.Notification; +import net.pterodactylus.util.notify.NotificationManager; +import net.pterodactylus.util.template.DataProvider; +import net.pterodactylus.util.template.ReflectionAccessor; + +/** + * Adds additional properties to a {@link NotificationManager}. + *
+ *
all
+ *
Returns all notifications, sorted by creation time, oldest first.
+ *
new
+ *
Returns all changed notifications, sorted by last updated time, newest + * first.
+ *
+ * + * @author David ‘Bombe’ Roden + */ +public class NotificationManagerAccessor extends ReflectionAccessor { + + /** + * {@inheritDoc} + */ + @Override + public Object get(DataProvider dataProvider, Object object, String member) { + NotificationManager notificationManager = (NotificationManager) object; + if ("all".equals(member)) { + List notifications = new ArrayList(notificationManager.getNotifications()); + Collections.sort(notifications, Notification.CREATED_TIME_SORTER); + return notifications; + } else if ("new".equals(member)) { + List notifications = new ArrayList(notificationManager.getChangedNotifications()); + Collections.sort(notifications, Notification.LAST_UPDATED_TIME_SORTER); + return notifications; + } + return super.get(dataProvider, object, member); + } + +} -- 2.7.4