Convert “image insert aborted” into EventBus-based event.
[Sone.git] / src / main / java / net / pterodactylus / sone / core / CoreListenerManager.java
index 7ba226b..d409dac 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - CoreListenerManager.java - Copyright © 2010 David Roden
+ * Sone - CoreListenerManager.java - Copyright © 2010–2012 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
@@ -17,9 +17,7 @@
 
 package net.pterodactylus.sone.core;
 
-import net.pterodactylus.sone.data.Post;
-import net.pterodactylus.sone.data.Reply;
-import net.pterodactylus.sone.data.Sone;
+import net.pterodactylus.sone.data.Image;
 import net.pterodactylus.util.event.AbstractListenerManager;
 
 /**
@@ -44,130 +42,30 @@ public class CoreListenerManager extends AbstractListenerManager<Core, CoreListe
        //
 
        /**
-        * Notifies all listeners that the given Sone is now being rescued.
+        * Notifies all listeners that an image was successfully inserted.
         *
-        * @see CoreListener#rescuingSone(Sone)
-        * @param sone
-        *            The Sone that is being rescued
+        * @see CoreListener#imageInsertFinished(Image)
+        * @param image
+        *            The image that was inserted
         */
-       void fireRescuingSone(Sone sone) {
+       void fireImageInsertFinished(Image image) {
                for (CoreListener coreListener : getListeners()) {
-                       coreListener.rescuingSone(sone);
+                       coreListener.imageInsertFinished(image);
                }
        }
 
        /**
-        * Notifies all listeners that the given Sone was rescued.
+        * Notifies all listeners that an image failed to be inserted.
         *
-        * @see CoreListener#rescuedSone(Sone)
-        * @param sone
-        *            The Sone that was rescued
+        * @see CoreListener#imageInsertFailed(Image, Throwable)
+        * @param image
+        *            The image that could not be inserted
+        * @param cause
+        *            The cause of the failure
         */
-       void fireRescuedSone(Sone sone) {
+       void fireImageInsertFailed(Image image, Throwable cause) {
                for (CoreListener coreListener : getListeners()) {
-                       coreListener.rescuedSone(sone);
-               }
-       }
-
-       /**
-        * Notifies all listeners that a new Sone has been discovered.
-        *
-        * @see CoreListener#newSoneFound(Sone)
-        * @param sone
-        *            The discovered sone
-        */
-       void fireNewSoneFound(Sone sone) {
-               for (CoreListener coreListener : getListeners()) {
-                       coreListener.newSoneFound(sone);
-               }
-       }
-
-       /**
-        * Notifies all listeners that a new post has been found.
-        *
-        * @see CoreListener#newPostFound(Post)
-        * @param post
-        *            The new post
-        */
-       void fireNewPostFound(Post post) {
-               for (CoreListener coreListener : getListeners()) {
-                       coreListener.newPostFound(post);
-               }
-       }
-
-       /**
-        * Notifies all listeners that a new reply has been found.
-        *
-        * @see CoreListener#newReplyFound(Reply)
-        * @param reply
-        *            The new reply
-        */
-       void fireNewReplyFound(Reply reply) {
-               for (CoreListener coreListener : getListeners()) {
-                       coreListener.newReplyFound(reply);
-               }
-       }
-
-       /**
-        * Notifies all listeners that the given Sone is now marked as known.
-        *
-        * @see CoreListener#markSoneKnown(Sone)
-        * @param sone
-        *            The known Sone
-        */
-       void fireMarkSoneKnown(Sone sone) {
-               for (CoreListener coreListener : getListeners()) {
-                       coreListener.markSoneKnown(sone);
-               }
-       }
-
-       /**
-        * Notifies all listeners that the given post is now marked as known.
-        *
-        * @param post
-        *            The known post
-        */
-       void fireMarkPostKnown(Post post) {
-               for (CoreListener coreListener : getListeners()) {
-                       coreListener.markPostKnown(post);
-               }
-       }
-
-       /**
-        * Notifies all listeners that the given reply is now marked as known.
-        *
-        * @param reply
-        *            The known reply
-        */
-       void fireMarkReplyKnown(Reply reply) {
-               for (CoreListener coreListener : getListeners()) {
-                       coreListener.markReplyKnown(reply);
-               }
-       }
-
-       /**
-        * Notifies all listener that the given post was removed.
-        *
-        * @see CoreListener#postRemoved(Post)
-        * @param post
-        *            The removed post
-        */
-       void firePostRemoved(Post post) {
-               for (CoreListener coreListener : getListeners()) {
-                       coreListener.postRemoved(post);
-               }
-       }
-
-       /**
-        * Notifies all listener that the given reply was removed.
-        *
-        * @see CoreListener#replyRemoved(Reply)
-        * @param reply
-        *            The removed reply
-        */
-       void fireReplyRemoved(Reply reply) {
-               for (CoreListener coreListener : getListeners()) {
-                       coreListener.replyRemoved(reply);
+                       coreListener.imageInsertFailed(image, cause);
                }
        }