aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/imap/MCOIMAPFolderInfo.h
diff options
context:
space:
mode:
authorGravatar silenteh <silenteh@gmail.com>2013-06-05 00:23:44 +0200
committerGravatar silenteh <silenteh@gmail.com>2013-06-05 00:23:44 +0200
commitdc94dfdbc71c209a2c70002616de07d368e4ef3f (patch)
tree9dc0d5018d9c47abf306c86da7715510a8fc6db2 /src/objc/imap/MCOIMAPFolderInfo.h
parentf4ea2b37befa78edda1e5caafc2f5c3647506b05 (diff)
parent7282982279ff7f3aff23f361e8483b56ee574c09 (diff)
Merge branch 'master' of github.com:silenteh/mailcore2
Diffstat (limited to 'src/objc/imap/MCOIMAPFolderInfo.h')
-rw-r--r--src/objc/imap/MCOIMAPFolderInfo.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/objc/imap/MCOIMAPFolderInfo.h b/src/objc/imap/MCOIMAPFolderInfo.h
index dfff3f9f..949e900e 100644
--- a/src/objc/imap/MCOIMAPFolderInfo.h
+++ b/src/objc/imap/MCOIMAPFolderInfo.h
@@ -12,23 +12,23 @@
#import <Foundation/Foundation.h>
-// This class is a cluster for some folder information.
+/* This class holds IMAP folder metadata */
@interface MCOIMAPFolderInfo : NSObject
-// Returns a new allocated folder info.
+/** Create an empty instance */
+ (MCOIMAPFolderInfo *) info;
-// UIDNEXT value.
+/** The folder's IMAP UIDNEXT value. Used to determine the uid for the next received message. */
@property (nonatomic, assign) uint32_t uidNext;
-// UIDVALIDITY value.
+/** The folders IMAP UIDVALIDITY value. Must be used to determine if the server has changed assigned UIDs */
@property (nonatomic, assign) uint32_t uidValidity;
-// MODSEQ value.
+/** An advanced value used for doing quick flag syncs if the server supports it. The MODSEQ value. */
@property (nonatomic, assign) uint64_t modSequenceValue;
-// number of messages.
+/** Total number of messages in the folder */
@property (nonatomic, assign) int messageCount;
// first uid of the unseen messages.