xartigas pushed a commit to branch master. http://git.enlightenment.org/tools/examples.git/commit/?id=dfa678e9dc6d4473dda854c5671e28a28465b3d4
commit dfa678e9dc6d4473dda854c5671e28a28465b3d4 Author: Xavi Artigas <[email protected]> Date: Fri Feb 7 09:11:59 2020 +0100 Add the now-mandatory @since tags to example EO files --- tutorial/c/eo-inherit/src/example_rectangle.eo | 5 ++++- tutorial/c/eo-inherit/src/example_square.eo | 5 ++++- tutorial/c/eo-multiinherit/src/example_circle.eo | 5 ++++- tutorial/c/eo-multiinherit/src/example_colored.eo | 5 ++++- tutorial/c/eo-multiinherit/src/example_rectangle.eo | 5 ++++- tutorial/c/eo-multiinherit/src/example_shape.eo | 5 ++++- tutorial/c/eo-multiinherit/src/example_square.eo | 5 ++++- 7 files changed, 28 insertions(+), 7 deletions(-) diff --git a/tutorial/c/eo-inherit/src/example_rectangle.eo b/tutorial/c/eo-inherit/src/example_rectangle.eo index 6df6081d..843f9896 100644 --- a/tutorial/c/eo-inherit/src/example_rectangle.eo +++ b/tutorial/c/eo-inherit/src/example_rectangle.eo @@ -1,5 +1,8 @@ class Example.Rectangle extends Efl.Object { - [[A rectangle shape object]] + [[A rectangle shape object + + @since 1.00 + ]] methods { @property width { [[The width of this rectangle]] diff --git a/tutorial/c/eo-inherit/src/example_square.eo b/tutorial/c/eo-inherit/src/example_square.eo index c0e8cb69..8633aaf0 100644 --- a/tutorial/c/eo-inherit/src/example_square.eo +++ b/tutorial/c/eo-inherit/src/example_square.eo @@ -1,5 +1,8 @@ class Example.Square extends Example.Rectangle { - [[A square shape object]] + [[A square shape object + + @since 1.00 + ]] implements { Example.Rectangle.width {set;} Example.Rectangle.height {set;} diff --git a/tutorial/c/eo-multiinherit/src/example_circle.eo b/tutorial/c/eo-multiinherit/src/example_circle.eo index ace5acc2..a0440c1f 100644 --- a/tutorial/c/eo-multiinherit/src/example_circle.eo +++ b/tutorial/c/eo-multiinherit/src/example_circle.eo @@ -1,5 +1,8 @@ class Example.Circle extends Efl.Object implements Example.Shape { - [[A circle shape object]] + [[A circle shape object + + @since 1.00 + ]] methods { @property radius { [[The radius of this circle]] diff --git a/tutorial/c/eo-multiinherit/src/example_colored.eo b/tutorial/c/eo-multiinherit/src/example_colored.eo index 80fa8de0..91ecdc38 100644 --- a/tutorial/c/eo-multiinherit/src/example_colored.eo +++ b/tutorial/c/eo-multiinherit/src/example_colored.eo @@ -1,5 +1,8 @@ mixin Example.Colored { - [[A mixin for providing APIs for managing colour properties]] + [[A mixin for providing APIs for managing colour properties + + @since 1.00 + ]] methods { @property color { [[The colour to associate with the class we are coloring. diff --git a/tutorial/c/eo-multiinherit/src/example_rectangle.eo b/tutorial/c/eo-multiinherit/src/example_rectangle.eo index 649fa3bc..c9b11d56 100644 --- a/tutorial/c/eo-multiinherit/src/example_rectangle.eo +++ b/tutorial/c/eo-multiinherit/src/example_rectangle.eo @@ -1,5 +1,8 @@ class Example.Rectangle extends Efl.Object implements Example.Shape, Example.Colored { - [[A rectangle shape object]] + [[A rectangle shape object + + @since 1.00 + ]] methods { @property width { [[The width of this rectangle]] diff --git a/tutorial/c/eo-multiinherit/src/example_shape.eo b/tutorial/c/eo-multiinherit/src/example_shape.eo index d2ee74df..c6f7e8d2 100644 --- a/tutorial/c/eo-multiinherit/src/example_shape.eo +++ b/tutorial/c/eo-multiinherit/src/example_shape.eo @@ -1,5 +1,8 @@ interface Example.Shape { - [[A generic shape object]] + [[A generic shape object + + @since 1.00 + ]] methods { area { [[Calculate the area of the shape.]] diff --git a/tutorial/c/eo-multiinherit/src/example_square.eo b/tutorial/c/eo-multiinherit/src/example_square.eo index c0e8cb69..8633aaf0 100644 --- a/tutorial/c/eo-multiinherit/src/example_square.eo +++ b/tutorial/c/eo-multiinherit/src/example_square.eo @@ -1,5 +1,8 @@ class Example.Square extends Example.Rectangle { - [[A square shape object]] + [[A square shape object + + @since 1.00 + ]] implements { Example.Rectangle.width {set;} Example.Rectangle.height {set;} --
