Browse CVS Repository
Diff of /undmail/guiproto/DUMMail.h
Parent Directory
| Revision Log
| Revision Graph
| Patch
| 1 |
#import <Foundation/Foundation.h> |
#import <Foundation/Foundation.h> |
| 2 |
|
#import "DUMMailAddress.h" |
| 3 |
|
|
| 4 |
@interface DUMMail : NSObject { |
@interface DUMMail : NSObject { |
| 5 |
NSString *from; |
DUMMailAddress *from; |
| 6 |
NSString *to; |
DUMMailAddress *to; |
| 7 |
NSString *subject; |
NSString *subject; |
| 8 |
NSDate *date; |
NSCalendarDate *date; |
| 9 |
NSString *content; |
NSString *content; |
| 10 |
BOOL isUnread; |
BOOL isUnread; |
| 11 |
} |
} |
| 12 |
-(id)initWithMailData:(NSString *)mailData; |
-(id)initWithMailData:(NSString *)mailData; |
| 13 |
-(NSString *)from; |
-(DUMMailAddress *)from; |
| 14 |
-(NSString *)to; |
-(DUMMailAddress *)to; |
| 15 |
-(NSString *)subject; |
-(NSString *)subject; |
| 16 |
-(NSDate *)date; |
-(NSCalendarDate *)date; |
| 17 |
-(NSString *)content; |
-(NSString *)content; |
| 18 |
-(BOOL)isUnread; |
-(BOOL)isUnread; |
| 19 |
-(void)setIsUnread:(BOOL)flag; |
-(void)setIsUnread:(BOOL)flag; |
|
|
Legend:
| Removed from v.1.1 |
|
| changed lines |
| |
Added in v.1.2 |
|
|
|