Fix ALL the logging!
[Sone.git] / src / main / java / net / pterodactylus / sone / core / CoreListenerManager.java
index 875a2b6..9951ccd 100644 (file)
@@ -17,8 +17,9 @@
 
 package net.pterodactylus.sone.core;
 
+import net.pterodactylus.sone.data.Image;
 import net.pterodactylus.sone.data.Post;
-import net.pterodactylus.sone.data.Reply;
+import net.pterodactylus.sone.data.PostReply;
 import net.pterodactylus.sone.data.Sone;
 import net.pterodactylus.util.event.AbstractListenerManager;
 import net.pterodactylus.util.version.Version;
@@ -73,11 +74,11 @@ public class CoreListenerManager extends AbstractListenerManager<Core, CoreListe
        /**
         * Notifies all listeners that a new reply has been found.
         *
-        * @see CoreListener#newReplyFound(Reply)
+        * @see CoreListener#newReplyFound(PostReply)
         * @param reply
         *            The new reply
         */
-       void fireNewReplyFound(Reply reply) {
+       void fireNewReplyFound(PostReply reply) {
                for (CoreListener coreListener : getListeners()) {
                        coreListener.newReplyFound(reply);
                }
@@ -114,7 +115,7 @@ public class CoreListenerManager extends AbstractListenerManager<Core, CoreListe
         * @param reply
         *            The known reply
         */
-       void fireMarkReplyKnown(Reply reply) {
+       void fireMarkReplyKnown(PostReply reply) {
                for (CoreListener coreListener : getListeners()) {
                        coreListener.markReplyKnown(reply);
                }
@@ -149,11 +150,11 @@ public class CoreListenerManager extends AbstractListenerManager<Core, CoreListe
        /**
         * Notifies all listener that the given reply was removed.
         *
-        * @see CoreListener#replyRemoved(Reply)
+        * @see CoreListener#replyRemoved(PostReply)
         * @param reply
         *            The removed reply
         */
-       void fireReplyRemoved(Reply reply) {
+       void fireReplyRemoved(PostReply reply) {
                for (CoreListener coreListener : getListeners()) {
                        coreListener.replyRemoved(reply);
                }
@@ -246,4 +247,58 @@ public class CoreListenerManager extends AbstractListenerManager<Core, CoreListe
                }
        }
 
+       /**
+        * Notifies all listeners that an image has started being inserted.
+        *
+        * @see CoreListener#imageInsertStarted(Image)
+        * @param image
+        *            The image that is now inserted
+        */
+       void fireImageInsertStarted(Image image) {
+               for (CoreListener coreListener : getListeners()) {
+                       coreListener.imageInsertStarted(image);
+               }
+       }
+
+       /**
+        * Notifies all listeners that an image insert was aborted by the user.
+        *
+        * @see CoreListener#imageInsertAborted(Image)
+        * @param image
+        *            The image that is not inserted anymore
+        */
+       void fireImageInsertAborted(Image image) {
+               for (CoreListener coreListener : getListeners()) {
+                       coreListener.imageInsertAborted(image);
+               }
+       }
+
+       /**
+        * Notifies all listeners that an image was successfully inserted.
+        *
+        * @see CoreListener#imageInsertFinished(Image)
+        * @param image
+        *            The image that was inserted
+        */
+       void fireImageInsertFinished(Image image) {
+               for (CoreListener coreListener : getListeners()) {
+                       coreListener.imageInsertFinished(image);
+               }
+       }
+
+       /**
+        * Notifies all listeners that an image failed to be inserted.
+        *
+        * @see CoreListener#imageInsertFailed(Image, Throwable)
+        * @param image
+        *            The image that could not be inserted
+        * @param cause
+        *            The cause of the failure
+        */
+       void fireImageInsertFailed(Image image, Throwable cause) {
+               for (CoreListener coreListener : getListeners()) {
+                       coreListener.imageInsertFailed(image, cause);
+               }
+       }
+
 }