blob: 3e842aaddf00aa71d5217f9131122fac0b00175a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
//
// MCOIMAPNamespace.h
// mailcore2
//
// Created by DINH Viêt Hoà on 3/23/13.
// Copyright (c) 2013 MailCore. All rights reserved.
//
#ifndef MAILCORE_MCOIMAPNAMESPACE_H
#define MAILCORE_MCOIMAPNAMESPACE_H
/** Represents an IMAP namespace */
#import <Foundation/Foundation.h>
@class MCOIMAPNamespace;
@interface MCOIMAPNamespace : NSObject <NSCopying>
/**
Returns a simple namespace with only one item.
*/
+ (MCOIMAPNamespace *) namespaceWithPrefix:(NSString *)prefix delimiter:(char)delimiter;
/** Returns the prefix of the main item of this namespace. */
- (NSString *) mainPrefix;
/** Returns the path delimiter of the main item of this namespace */
- (char) mainDelimiter;
/** Returns the list of prefixes of this namespace. */
- (NSArray * /* NSString */) prefixes;
/**
Returns the folder path for the given list of path components in the context
of the main item of the namespace.
*/
- (NSString *) pathForComponents:(NSArray *)components;
/**
Returns the folder path for the given list of path components and a prefix.
It will use the best item matching the prefix to compute the path.
*/
- (NSString *) pathForComponents:(NSArray *)components prefix:(NSString *)prefix;
/** Returns the components given a folder path. */
- (NSArray * /* NSString */) componentsFromPath:(NSString *)path;
/** Returns YES if the namespace contains the given folder path. */
- (BOOL) containsFolderPath:(NSString *)path;
@end
#endif
|