X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fcore%2FCoreListener.java;h=7b5c15c99b9d114d88f7d6f109b43c251107b82a;hb=f35aa413bce1d18c6f822719f7864ea6838cd043;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..7b5c15c 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,9 @@ 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.Image; import net.pterodactylus.sone.data.Sone; +import net.pterodactylus.util.version.Version; /** * Listener interface for objects that want to be notified on certain @@ -32,27 +32,60 @@ import net.pterodactylus.sone.data.Sone; public interface CoreListener extends EventListener { /** - * Notifies a listener that a new Sone has been discovered. + * Notifies a listener that the insert of the given Sone was aborted. * + * @see SoneInsertListener#insertAborted(Sone, Throwable) * @param sone - * The new Sone + * The Sone that was inserted + * @param cause + * The cause for the abortion (may be {@code null}) */ - public void newSoneFound(Sone sone); + public void soneInsertAborted(Sone sone, Throwable cause); /** - * Notifies a listener that a new post has been found. + * Notifies a listener that a new version has been found. * - * @param post - * The new post + * @param version + * The version that was found + * @param releaseTime + * The release time of the new version + * @param latestEdition + * The latest edition of the Sone homepage */ - public void newPostFound(Post post); + public void updateFound(Version version, long releaseTime, long latestEdition); /** - * Notifies a listener that a new reply has been found. + * Notifies a listener that an image has started being inserted. * - * @param reply - * The new reply + * @param image + * The image that is now inserted */ - public void newReplyFound(Reply reply); + 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); }