diff --git a/src/com/fsck/k9/mail/Folder.java b/src/com/fsck/k9/mail/Folder.java index 61c03af1c..8a18c44b0 100644 --- a/src/com/fsck/k9/mail/Folder.java +++ b/src/com/fsck/k9/mail/Folder.java @@ -137,6 +137,14 @@ public abstract class Folder { public void expunge() throws MessagingException {} + /** + * Populate a list of messages based upon a FetchProfile. See {@link FetchProfile} for the things that can + * be fetched. + * @param messages Messages to populate + * @param fp Things to download + * @param listener Listener to notify as we fetch messages. + * @throws MessagingException + */ public abstract void fetch(Message[] messages, FetchProfile fp, MessageRetrievalListener listener) throws MessagingException;