docs: ecore: document newly added efl model composite classes

This commit is contained in:
Stefan Schmidt 2017-02-09 14:40:50 +01:00
parent baf4813d87
commit 174f86b2e8
2 changed files with 7 additions and 3 deletions

View File

@ -1,19 +1,22 @@
class Efl.Model.Composite.Boolean (Efl.Object, Efl.Model)
{
[[Efl model composite boolean class]]
methods {
@property composite_model {
[[Composite model]]
set {
}
get {
}
values {
model: Efl.Model;
model: Efl.Model; [[Efl model]]
}
}
property_add {
[[Add property]]
params {
@in name: string;
@in initial_value: bool;
@in name: string; [[Property name]]
@in initial_value: bool; [[Initial property value $bool]]
}
}
}

View File

@ -1,5 +1,6 @@
class Efl.Model.Composite.Boolean.Children (Efl.Object, Efl.Model)
{
[[Efl model composite boolean children class]]
implements {
Efl.Object.destructor;
Efl.Model.properties { get; }