00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @class NSString;
00010
00011 @interface ComposeRecipient : NSObject
00012 {
00013 int _identifier;
00014 int _uid;
00015 NSString *_address;
00016 }
00017
00018 + (id)recipientWithAddress:(id)fp8;
00019 + (id)recipientWithRecord:(struct CPRecord *)fp8 identifier:(int)fp12;
00020 + (id)_abFindAddressForRecord:(struct CPRecord *)fp8 identifier:(int)fp12;
00021 + (struct CPRecord *)_abFindRecordForAddress:(id)fp8 identifier:(int *)fp12 uniqueID:(int *)fp16;
00022 + (int)_recipientABProperty;
00023 - (id)initWithRecord:(struct CPRecord *)fp8 identifier:(int)fp12 address:(id)fp16;
00024 - (struct CPRecord *)record;
00025 - (id)address;
00026 - (id)commentedAddress;
00027 - (id)label;
00028 - (void)setAddress:(id)fp8;
00029 - (int)identifier;
00030 - (id)copyWithZone:(struct _NSZone *)fp8;
00031 - (void)dealloc;
00032 - (id)displayString;
00033 - (id)uncommentedAddress;
00034
00035 @end
00036