Show
Ignore:
Timestamp:
08/01/08 10:18:16 PM (5 months ago)
Author:
octorian
Message:

Mailbox node serialization

Files:
1 modified

Legend:

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

    r253 r259  
    109109        } 
    110110 
    111         public void requestFolderStatus(FolderTreeItem root) { 
    112                 connectionHandler.addRequest(IncomingMailConnectionHandler.REQUEST_FOLDER_STATUS, new Object[] { root }); 
     111        public void requestFolderStatus(FolderTreeItem[] folders) { 
     112                connectionHandler.addRequest(IncomingMailConnectionHandler.REQUEST_FOLDER_STATUS, new Object[] { folders }); 
    113113        } 
    114114 
     
    165165                        break; 
    166166                case IncomingMailConnectionHandler.REQUEST_FOLDER_STATUS: 
    167                         fireFolderStatusChanged((FolderTreeItem)result); 
     167                        FolderTreeItem[] folders = (FolderTreeItem[])result; 
     168                        for(int i=0; i<folders.length; i++) { 
     169                                fireFolderStatusChanged(folders[i]); 
     170                        } 
    168171                        break; 
    169172                case IncomingMailConnectionHandler.REQUEST_FOLDER_MESSAGES_RANGE: