00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #import "SimpleDBReplaceableAttribute.h"
00017
00018
00023 @interface SimpleDBReplaceableItem : NSObject
00024
00025 {
00026 NSString* name;
00027 NSMutableArray* attributes;
00028
00029 }
00030
00031
00035 @property (nonatomic, retain) NSString* name;
00036
00040 @property (nonatomic, retain) NSMutableArray* attributes;
00041
00042
00047 -(id)init;
00048
00055 -(id)initWithName:(NSString*)theName;
00056
00064 -(id)initWithName:(NSString*)theName andAttributes:(NSMutableArray*)theAttributes;
00065
00070 -(void)addAttribute:(SimpleDBReplaceableAttribute*)attribute;
00071
00078 -(NSString*)description;
00079
00080
00081 @end
00082