X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fcore%2FCoreListener.java;h=a44929301ad1b9ea56d1f2c4b7a8d54d4375c26b;hb=b3071020f22e1af7226809351a5dbea2a44ebc16;hp=595d11ae6574f3ee78f622b8a884c9f244f18c6c;hpb=c26c8d115cd895ac1c187552ac46350a501c250a;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/core/CoreListener.java b/src/main/java/net/pterodactylus/sone/core/CoreListener.java index 595d11a..a449293 100644 --- a/src/main/java/net/pterodactylus/sone/core/CoreListener.java +++ b/src/main/java/net/pterodactylus/sone/core/CoreListener.java @@ -1,5 +1,5 @@ /* - * Sone - CoreListener.java - Copyright © 2010 David Roden + * Sone - CoreListener.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 @@ -19,9 +19,7 @@ package net.pterodactylus.sone.core; import java.util.EventListener; -import net.pterodactylus.sone.data.Post; -import net.pterodactylus.sone.data.Reply; -import net.pterodactylus.sone.data.Sone; +import net.pterodactylus.sone.data.Image; /** * Listener interface for objects that want to be notified on certain @@ -32,67 +30,13 @@ import net.pterodactylus.sone.data.Sone; public interface CoreListener extends EventListener { /** - * Notifies a listener that a Sone is now being rescued. + * Notifies a listener that an image failed to be inserted. * - * @param sone - * The Sone that is rescued + * @param image + * The image that could not be inserted + * @param cause + * The reason for the failed insert */ - public void rescuingSone(Sone sone); - - /** - * Notifies a listener that the Sone was rescued and can now be unlocked. - * - * @param sone - * The Sone that was rescued - */ - public void rescuedSone(Sone sone); - - /** - * Notifies a listener that a new Sone has been discovered. - * - * @param sone - * The new Sone - */ - public void newSoneFound(Sone sone); - - /** - * Notifies a listener that a new post has been found. - * - * @param post - * The new post - */ - public void newPostFound(Post post); - - /** - * Notifies a listener that a new reply has been found. - * - * @param reply - * The new reply - */ - public void newReplyFound(Reply reply); - - /** - * Notifies a listener that the given Sone is now marked as known. - * - * @param sone - * The known Sone - */ - public void markSoneKnown(Sone sone); - - /** - * Notifies a listener that the given post is now marked as known. - * - * @param post - * The known post - */ - public void markPostKnown(Post post); - - /** - * Notifies a listener that the given reply is now marked as known. - * - * @param reply - * The known reply - */ - public void markReplyKnown(Reply reply); + public void imageInsertFailed(Image image, Throwable cause); }