X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fcore%2FCoreListener.java;h=2e7b337917eb25c09a9e887407a351f0beb8b3e9;hb=cb6325fa54d93612c5aad307204d30600b27af81;hp=d5120acbd42b5a452921dd6b7ebc003f4ed6ca81;hpb=4d07ddbfd96d610c2f862c4688aed75d3f4ff86f;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 d5120ac..2e7b337 100644 --- a/src/main/java/net/pterodactylus/sone/core/CoreListener.java +++ b/src/main/java/net/pterodactylus/sone/core/CoreListener.java @@ -19,8 +19,9 @@ package net.pterodactylus.sone.core; import java.util.EventListener; +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.version.Version; @@ -54,7 +55,7 @@ public interface CoreListener extends EventListener { * @param reply * The new reply */ - public void newReplyFound(Reply reply); + public void newReplyFound(PostReply reply); /** * Notifies a listener that the given Sone is now marked as known. @@ -78,7 +79,7 @@ public interface CoreListener extends EventListener { * @param reply * The known reply */ - public void markReplyKnown(Reply reply); + public void markReplyKnown(PostReply reply); /** * Notifies a listener that the given Sone was removed. @@ -102,7 +103,7 @@ public interface CoreListener extends EventListener { * @param reply * The removed reply */ - public void replyRemoved(Reply reply); + public void replyRemoved(PostReply reply); /** * Notifies a listener when a Sone was locked. @@ -164,4 +165,38 @@ public interface CoreListener extends EventListener { */ public void updateFound(Version version, long releaseTime, long latestEdition); + /** + * Notifies a listener that an image has started being inserted. + * + * @param image + * The image that is now inserted + */ + public void imageInsertStarted(Image image); + + /** + * Notifies a listener that an image insert was aborted by the user. + * + * @param image + * The image that is not inserted anymore + */ + public void imageInsertAborted(Image image); + + /** + * Notifies a listener that an image was successfully inserted. + * + * @param image + * The image that was inserted + */ + public void imageInsertFinished(Image image); + + /** + * Notifies a listener that an image failed to be inserted. + * + * @param image + * The image that could not be inserted + * @param cause + * The reason for the failed insert + */ + public void imageInsertFailed(Image image, Throwable cause); + }