X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fcore%2FCoreListener.java;h=5d5e7155e3841269192ff52a16e132772d1a6b31;hb=7379bb70d4db3b419deed77f0df95f74c4b0e038;hp=2547e63f1adcca67692b7f08a855326970df1f5f;hpb=bfe3df366bdbb6c283bdd698f4cf2e3b9c4e9d9c;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 2547e63..5d5e715 100644 --- a/src/main/java/net/pterodactylus/sone/core/CoreListener.java +++ b/src/main/java/net/pterodactylus/sone/core/CoreListener.java @@ -32,6 +32,22 @@ import net.pterodactylus.sone.data.Sone; public interface CoreListener extends EventListener { /** + * Notifies a listener that a Sone is now being rescued. + * + * @param sone + * The Sone that is rescued + */ + 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 @@ -55,4 +71,60 @@ public interface CoreListener extends EventListener { */ 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); + + /** + * Notifies a listener that the given post was removed. + * + * @param post + * The removed post + */ + public void postRemoved(Post post); + + /** + * Notifies a listener that the given reply was removed. + * + * @param reply + * The removed reply + */ + public void replyRemoved(Reply reply); + + /** + * Notifies a listener when a Sone was locked. + * + * @param sone + * The Sone that was locked + */ + public void soneLocked(Sone sone); + + /** + * Notifies a listener that a Sone was unlocked. + * + * @param sone + * The Sone that was unlocked + */ + public void soneUnlocked(Sone sone); + }