efl_canvas_animation_group: use @property instead of method

this also refreshes the documentation of all this.

Reviewed-by: Xavi Artigas <xavierartigas@yahoo.es>
Differential Revision: https://phab.enlightenment.org/D10795
This commit is contained in:
Marcel Hollerbach 2019-12-04 10:51:04 +01:00
parent c601944a13
commit 10b631e7cb
1 changed files with 6 additions and 3 deletions

View File

@ -21,9 +21,12 @@ abstract @beta Efl.Canvas.Animation_Group extends Efl.Canvas.Animation
@in animation: Efl.Canvas.Animation; [[Animation to remove from the group.]]
}
}
animations_get @const {
[[Gets the list of animations currently in the animation group.]]
return: iterator<Efl.Canvas.Animation> @move; [[List of animations in the group.]]
@property animations {
[[All animations that are currently part of this group.]]
get { }
values {
animations : iterator<Efl.Canvas.Animation> @move; [[The iterator carrying all animations of this group]]
}
}
}
implements {