Show
Ignore:
Timestamp:
08/03/08 02:00:51 PM (5 months ago)
Author:
octorian
Message:

More UID FETCH code

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/LogicMail/src/org/logicprobe/LogicMail/mail/IncomingMailClient.java

    r259 r264  
    129129     
    130130    /** 
     131     * Get a list of new messages in the selected folder. 
     132     * On the first invocation, it will return the most recent messages 
     133     * up to the limit configured in the global configuration. 
     134     * On subsequent invocations, if the underlying protocol supports it, 
     135     * this method should return all new messages that have entered the 
     136     * mailbox since.  Otherwise, it will behave the same as it 
     137     * did on the first invocation. 
     138     *  
     139     * @return List of message envelopes 
     140     * @throw IOException on I/O errors 
     141     * @throw MailException on protocol errors 
     142     */ 
     143    public abstract FolderMessage[] getNewFolderMessages() throws IOException, MailException; 
     144     
     145    /** 
    131146     * Get a particular message from the selected folder. 
    132147     * The details of message retrieval should be constrained by