@@ -45,13 +45,27 @@ extern const struct <$managedObjectClassName$>UserInfo {<$foreach UserInfo userI
45
45
@interface <$managedObjectClassName$>ID : <$if hasSuperentity$><$customSuperentity$>ID<$else$>NSManagedObjectID<$endif$> {}
46
46
@end
47
47
48
+ <$if userInfo.documentation$>
49
+ /**
50
+ * <$userInfo.documentation$>
51
+ *
52
+ * <$userInfo.discussion$>
53
+ */
54
+ <$endif$>
48
55
@interface _<$managedObjectClassName$> : <$customSuperentity$> {}
49
56
+ (id)insertInManagedObjectContext:(NSManagedObjectContext*)moc_;
50
57
+ (NSString*)entityName;
51
58
+ (NSEntityDescription*)entityInManagedObjectContext:(NSManagedObjectContext*)moc_;
52
59
@property (nonatomic, readonly, strong) <$managedObjectClassName$>ID* objectID;
53
60
54
61
<$foreach Attribute noninheritedAttributes do$>
62
+ <$if Attribute.userInfo.documentation$>
63
+ /**
64
+ * <$Attribute.userInfo.documentation$>
65
+ *
66
+ * <$Attribute.userInfo.discussion$>
67
+ */
68
+ <$endif$>
55
69
<$if Attribute.hasDefinedAttributeType$>
56
70
<$if TemplateVar.arc$>
57
71
<$if Attribute.isReadonly$>
@@ -80,6 +94,13 @@ extern const struct <$managedObjectClassName$>UserInfo {<$foreach UserInfo userI
80
94
<$endif$>
81
95
<$endforeach do$>
82
96
<$foreach Relationship noninheritedRelationships do$>
97
+ <$if Relationship.userInfo.documentation$>
98
+ /**
99
+ * <$Relationship.userInfo.documentation$>
100
+ *
101
+ * <$Relationship.userInfo.discussion$>
102
+ */
103
+ <$endif$>
83
104
<$if Relationship.isToMany$>
84
105
<$if TemplateVar.arc$>
85
106
@property (nonatomic, strong) <$Relationship.immutableCollectionClassName$> *<$Relationship.name$>;
@@ -106,6 +127,13 @@ extern const struct <$managedObjectClassName$>UserInfo {<$foreach UserInfo userI
106
127
<$endif$>
107
128
<$endforeach do$>
108
129
<$foreach FetchedProperty noninheritedFetchedProperties do$>
130
+ <$if FetchedProperty.userInfo.documentation$>
131
+ /**
132
+ * <$FetchedProperty.userInfo.documentation$>
133
+ *
134
+ * <$FetchedProperty.userInfo.discussion$>
135
+ */
136
+ <$endif$>
109
137
@property (nonatomic, readonly) NSArray *<$FetchedProperty.name$>;
110
138
<$endforeach do$>
111
139
<$if TemplateVar.frc$>
0 commit comments