Add method that signals when a Sone is marked as known.
[Sone.git] / src / main / java / net / pterodactylus / sone / core / CoreListener.java
index 2547e63..f8278ed 100644 (file)
@@ -55,4 +55,12 @@ 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);
+
 }