diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/website/annotations/giannotations.rst | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/docs/website/annotations/giannotations.rst b/docs/website/annotations/giannotations.rst index 10582739..00c10db2 100644 --- a/docs/website/annotations/giannotations.rst +++ b/docs/website/annotations/giannotations.rst @@ -99,19 +99,31 @@ Support for GObject objects :bzbug:`557383` * - ``(set-property NAME)`` - identifier - - This function is a setter method for the given GObject property. + - This function is the setter method for the given GObject property. + A setter function is defined as being the public function that is + called by the ``GObjectClass.set_property`` implementation in a + class. - :issue:`13` * - ``(get-property NAME)`` - identifier - - This function is a getter method for the given GObject property. + - This function is the getter method for the given GObject property. + A getter function is defined as being the public function that is + called by the ``GObjectClass.get_property`` implementation in a + class. - :issue:`13` * - ``(setter SYMBOL)`` - identifier - - This GObject property is accessed by the given setter function + - This GObject property is accessed by the given setter function. + A setter function is defined as being the public function that is + called by the ``GObjectClass.set_property`` implementation in a + class. - :issue:`13` * - ``(getter SYMBOL)`` - identifier - - This GObject property is accessed by the given getter function + - This GObject property is accessed by the given getter function. + A getter function is defined as being the public function that is + called by the ``GObjectClass.get_property`` implementation in a + class. - :issue:`13` |