X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fcore%2FCoreListener.java;h=a826e6432ee6d69c116ab6ae70a68fac4b3eb6ab;hp=2edbef50786e56423dd203af55e851d66378470d;hb=de3f83202862d1b12505eff4da668a736a355b72;hpb=68eb3683d2dda01e06c03d7e77d38b99be2b748f diff --git a/src/main/java/net/pterodactylus/sone/core/CoreListener.java b/src/main/java/net/pterodactylus/sone/core/CoreListener.java index 2edbef5..a826e64 100644 --- a/src/main/java/net/pterodactylus/sone/core/CoreListener.java +++ b/src/main/java/net/pterodactylus/sone/core/CoreListener.java @@ -20,8 +20,6 @@ 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.PostReply; import net.pterodactylus.sone.data.Sone; import net.pterodactylus.util.version.Version; @@ -34,78 +32,6 @@ import net.pterodactylus.util.version.Version; public interface CoreListener extends EventListener { /** - * 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(PostReply 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(PostReply reply); - - /** - * Notifies a listener that the given Sone was removed. - * - * @param sone - * The removed Sone - */ - public void soneRemoved(Sone sone); - - /** - * 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(PostReply 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