25 #ifndef _NSRelationshipDescription_h_
26 #define _NSRelationshipDescription_h_
28 #import <CoreData/NSPropertyDescription.h>
37 @class NSEntityDescription;
39 @interface NSRelationshipDescription : NSPropertyDescription
41 NSEntityDescription * _destinationEntity;
42 NSDeleteRule _deleteRule;
44 NSRelationshipDescription * _inverseRelationship;
46 int _minCount, _maxCount;
50 - (NSEntityDescription *) destinationEntity;
51 - (void) setDestinationEntity: (NSEntityDescription *) anEntityDescription;
54 - (NSRelationshipDescription *) inverseRelationship;
55 - (void) setInverseRelationship: (NSRelationshipDescription *)
56 aRelationshipDescription;
59 - (NSDeleteRule) deleteRule;
60 - (void) setDeleteRule: (NSDeleteRule) aDeleteRule;
64 - (void) setMinCount: (
int) aCount;
66 - (void) setMaxCount: (
int) aCount;