00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @class ABActionsController, ABCardController;
00010
00011 @interface ABPropertyGroup : NSObject
00012 {
00013 struct CPRecord *_record;
00014 int _property;
00015 ABActionsController *_actionsController;
00016 ABCardController *_cardController;
00017 }
00018
00019 - (id)initWithRecord:(struct CPRecord *)fp8 property:(int)fp12 cardController:(id)fp16;
00020 - (void)dealloc;
00021 - (int)property;
00022 - (struct CPRecord *)record;
00023 - (unsigned int)propertyCount;
00024 - (BOOL)isMultiValueProperty;
00025 - (id)copyStringValueAtIndex:(int)fp8;
00026 - (id)copyLabelAtIndex:(int)fp8;
00027 - (int)identifierAtIndex:(int)fp8;
00028 - (int)indexOfIdentifier:(int)fp8;
00029 - (void)deleteItemAtIndex:(int)fp8;
00030 - (id)actionsControllerPreparedWithValueAtIndex:(int)fp8;
00031 - (void)prepareActionsController:(id)fp8 withValueAtIndex:(int)fp12;
00032
00033 @end
00034