| | 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 | /** |