From 068f87380ca3e63c69ba23b48548a60d74d8dd90 Mon Sep 17 00:00:00 2001 From: Andrew Chen Date: Mon, 7 Jan 2013 22:15:49 -0800 Subject: [PATCH] More javadoc --- src/com/fsck/k9/mail/Folder.java | 8 ++++++++ 1 file changed, 8 insertions(+) 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;