summaryrefslogtreecommitdiff
path: root/src/lib/evas
diff options
context:
space:
mode:
authorDaniel Kolesa <d.kolesa@osg.samsung.com>2015-06-26 14:00:36 +0100
committerDaniel Kolesa <d.kolesa@osg.samsung.com>2015-06-26 14:00:36 +0100
commitb067b02b238a94f538675e3c7bd67dfc27420fff (patch)
treea3ead808cf55df11652d61c24b2fabb86e034389 /src/lib/evas
parent8c66b70aa93636a409ddf53870b468cc74e9dd96 (diff)
downloadefl-b067b02b238a94f538675e3c7bd67dfc27420fff.tar.gz
evas_line: convert docs
Diffstat (limited to 'src/lib/evas')
-rw-r--r--src/lib/evas/canvas/evas_line.eo21
1 files changed, 11 insertions, 10 deletions
diff --git a/src/lib/evas/canvas/evas_line.eo b/src/lib/evas/canvas/evas_line.eo
index 398e383905..3632adabbc 100644
--- a/src/lib/evas/canvas/evas_line.eo
+++ b/src/lib/evas/canvas/evas_line.eo
@@ -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.]]
}
}
}