00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @class NSData, NSMutableDictionary, NSString;
00010
00011 @interface MessageFileWrapper : NSObject
00012 {
00013 NSString *_path;
00014 NSString *_filename;
00015 NSString *_preferredFilename;
00016 NSData *_data;
00017 NSMutableDictionary *_attributes;
00018 NSString *_linkDestination;
00019 NSString *_url;
00020 int _type;
00021 }
00022
00023 - (void)setResourceForkData:(id)fp8;
00024 - (id)resourceForkData;
00025 - (void)setType:(unsigned long)fp8;
00026 - (unsigned long)type;
00027 - (void)setCreator:(unsigned long)fp8;
00028 - (unsigned long)creator;
00029 - (void)setFinderFlags:(unsigned short)fp8;
00030 - (unsigned short)finderFlags;
00031 - (void)setShouldHideExtension:(BOOL)fp8;
00032 - (BOOL)shouldHideExtension;
00033 - (void)setMimeType:(id)fp8;
00034 - (id)mimeType;
00035 - (id)inferredMimeType;
00036 - (void)setContentID:(id)fp8;
00037 - (id)contentID;
00038 - (void)setMessageID:(id)fp8;
00039 - (id)messageID;
00040 - (BOOL)couldConfuseWindowsClients;
00041 - (void)setShouldBeViewedInline:(BOOL)fp8;
00042 - (BOOL)shouldBeViewedInline;
00043 - (BOOL)isImageFile;
00044 - (void)setImageSize:(struct _NSSize)fp8 imageBytes:(unsigned int)fp16;
00045 - (struct _NSSize)imageSize;
00046 - (unsigned int)imageBytes;
00047 - (id)preferredFilenameWithoutHiddenExtension;
00048 - (id)tmpFullPath;
00049 - (void)setSavedPath:(id)fp8;
00050 - (id)savedPath;
00051 - (BOOL)writeToFile:(id)fp8 atomically:(BOOL)fp12 updateFilenames:(BOOL)fp16;
00052 - (id)initWithPath:(id)fp8;
00053 - (BOOL)isPlaceholder;
00054 - (id)dictionaryRepresentation;
00055 - (id)initWithDictionaryRepresentation:(id)fp8;
00056 - (id)URL;
00057 - (void)setURL:(id)fp8;
00058 - (id)initRegularFileWithContents:(id)fp8;
00059 - (id)initSymbolicLinkWithDestination:(id)fp8;
00060 - (void)setPreferredFilename:(id)fp8;
00061 - (id)preferredFilename;
00062 - (void)setFilename:(id)fp8;
00063 - (id)filename;
00064 - (BOOL)isSymbolicLink;
00065 - (BOOL)isRegularFile;
00066 - (BOOL)isDirectory;
00067 - (id)fileWrappers;
00068 - (id)symbolicLinkDestination;
00069 - (id)regularFileContents;
00070 - (void)setFileAttributes:(id)fp8;
00071 - (id)fileAttributes;
00072 - (void)dealloc;
00073
00074 @end
00075