Lines Matching full:property
6 // Property from a class extension:
12 @property int myprop;
23 // Readonly property in interface made readwrite in a category:
26 @property (readonly) int evolvingprop;
27 @property (nonatomic,readonly,getter=isBooleanProp) int booleanProp;
28 @property (nonatomic,readonly,weak) Foo *weakProp;
32 @property int evolvingprop;
33 @property int booleanProp;
34 @property Foo *weakProp;
42 // the property with a getter and setter.