evas_line: convert docs

This commit is contained in:
Daniel Kolesa 2015-06-26 14:00:36 +01:00
parent 8c66b70aa9
commit b067b02b23
1 changed files with 11 additions and 10 deletions

View File

@ -5,21 +5,22 @@ class Evas.Line (Evas.Object)
methods {
@property xy {
set {
/*@
@since 1.8
[[Sets the coordinates of the end points of the given evas line
object.
Sets the coordinates of the end points of the given evas line object. */
@since 1.8
]]
}
get {
/*@
Retrieves the coordinates of the end points of the given evas line object.
second end point. */
[[Retrieves the coordinates of the end points of the given evas
line object.
]]
}
values {
x1: Evas_Coord(0); /*@ The X coordinate of the first point. */
y1: Evas_Coord(3); /*@ The Y coordinate of the first point. */
x2: Evas_Coord; /*@ The X coordinate of the second point. */
y2: Evas_Coord; /*@ The Y coordinate of the second point. */
x1: Evas_Coord(0); [[The X coordinate of the first point.]]
y1: Evas_Coord(3); [[The Y coordinate of the first point.]]
x2: Evas_Coord; [[The X coordinate of the second point.]]
y2: Evas_Coord; [[The Y coordinate of the second point.]]
}
}
}