More javadoc

This commit is contained in:
Andrew Chen 2013-01-07 22:15:49 -08:00
parent d4eae05630
commit 068f87380c
1 changed files with 8 additions and 0 deletions

View File

@ -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;