summaryrefslogtreecommitdiff
path: root/src/lib/ecore/efl_model_composite_boolean_children.eo
blob: 45bb2f65a8d4a1e7c451109e481fe6564bc93c6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class Efl.Model_Composite_Boolean_Children (Efl.Model_Composite)
{
   [[Efl model composite boolean children class]]
   methods {
      @property index {
         [[Position of children in the parent model.]]
         set {
            [[Set the index. It can only be set before the object is finalized.]]
         }
       	 get {
            [[Get the index.]]
         }
         values {
            index: uint; [[The index of the child in the parent model.]]
         }
      }
   }
   implements {
      Efl.Model.properties { get; }
      Efl.Model.property { get; set; }
      Efl.Object.finalize;
   }
}