docs: atspi: add missing docs to atspi value interface

This commit is contained in:
Stefan Schmidt 2016-10-21 17:45:32 +02:00
parent e8c197763f
commit 3dc5dae685
1 changed files with 5 additions and 5 deletions

View File

@ -7,7 +7,7 @@ interface Elm.Interface.Atspi.Value ()
[[Gets value displayed by a accessible widget.]] [[Gets value displayed by a accessible widget.]]
} }
set { set {
return: bool; [[true if setting widgets value has successed, false otherwise.]] return: bool; [[$true if setting widgets value has succeed, $false otherwise.]]
} }
values { values {
value: double; [[Value of widget casted to floating point number.]] value: double; [[Value of widget casted to floating point number.]]
@ -19,9 +19,9 @@ interface Elm.Interface.Atspi.Value ()
[[Gets a range of all possible values and its description]] [[Gets a range of all possible values and its description]]
} }
values { values {
lower_limit: double; lower_limit: double; [[Lower limit of the range]]
upper_limit: double; upper_limit: double; [[Upper limit of the range]]
description: string; description: string; [[Description of the range]]
} }
} }
@property increment @protected { @property increment @protected {
@ -29,7 +29,7 @@ interface Elm.Interface.Atspi.Value ()
[[Gets an minimal incrementation value]] [[Gets an minimal incrementation value]]
} }
values { values {
increment: double; increment: double; [[Minimal incrementation value]]
} }
} }
} }