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/FolderTreeItem.java

    r221 r259  
    9191     
    9292    /** 
     93     * Create a folder tree item that is a clone of the source item, 
     94     * but has none of the references to parent or children items. 
     95     *  
     96     * @param source The source item. 
     97     */ 
     98    public FolderTreeItem(FolderTreeItem source) { 
     99        this.uniqueId = UniqueIdGenerator.getInstance().getUniqueId(); 
     100        this.name = source.name; 
     101        this.path = source.path; 
     102        this.delim = source.delim; 
     103        this.selectable = source.selectable; 
     104        this.msgCount = source.msgCount; 
     105        this.unseenCount = source.unseenCount; 
     106    } 
     107     
     108    /** 
    93109     * Creates an uninitialized folder tree item. 
    94110     * Only for use during deserialization.