From 2b7f9b6dfd372af81fd691ac0a0a87b53f8cce34 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Andre Date: Fri, 22 Sep 2017 13:38:59 +0900 Subject: [PATCH] widget: Add tiny doc for Efl.Ui.Widget.Part --- src/lib/elementary/efl_ui_widget_part.eo | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/lib/elementary/efl_ui_widget_part.eo b/src/lib/elementary/efl_ui_widget_part.eo index e848686b5b..2ddceab417 100644 --- a/src/lib/elementary/efl_ui_widget_part.eo +++ b/src/lib/elementary/efl_ui_widget_part.eo @@ -1,8 +1,12 @@ class Efl.Ui.Widget.Part (Efl.Object) { + [[This is the base class for all "Part" handles in Efl.Ui widgets. + + Since objects of this type are returned by @Efl.Part.part, their lifetime + is limited to exactly one function call only. Each widget class should + expose more specific types for their API-defined parts. + ]] data: Elm_Part_Data; - methods { - } implements { Efl.Object.destructor; }