ecore: declare efl_app and the inherits stable
authorMarcel Hollerbach <mail@marcel-hollerbach.de>
Fri, 22 Feb 2019 13:08:39 +0000 (14:08 +0100)
committerJunsuChoi <jsuya.choi@samsung.com>
Thu, 14 Mar 2019 05:46:26 +0000 (14:46 +0900)
fix T7556
fix T7514
fix T7514
fix T7514

Reviewed-by: Cedric BAIL <cedric.bail@free.fr>
Differential Revision: https://phab.enlightenment.org/D8001

src/lib/ecore/efl_app.eo
src/lib/ecore/efl_loop.eo
src/lib/ecore/efl_loop_consumer.eo
src/lib/ecore/efl_task.eo

index 5d5cddd..d7117ba 100644 (file)
@@ -1,6 +1,6 @@
 import efl_types;
 
-abstract @beta Efl.App extends Efl.Loop implements Efl.Core.Command_Line
+abstract Efl.App extends Efl.Loop implements Efl.Core.Command_Line
 {
    [[Object representing the application itself]]
    data: null;
index e8cadb5..95f94da 100644 (file)
@@ -4,7 +4,7 @@ struct Efl.Loop_Arguments {
    initialization: bool; [[Set to $true when the program should initialize its internal state. This happen once per process instance.]]
 }
 
-abstract @beta Efl.Loop extends Efl.Task
+abstract Efl.Loop extends Efl.Task
 {
    [[The Efl Main Loop
 
index 2f91220..f03a4d6 100644 (file)
@@ -1,4 +1,4 @@
-abstract @beta Efl.Loop_Consumer extends Efl.Object
+abstract Efl.Loop_Consumer extends Efl.Object
 {
    [[An @Efl.Loop_Consumer is a class which requires one of the parents to provide
      an @Efl.Loop interface when performing @Efl.Object.provider_find. It will enforce this by
index 6745411..d30b0d0 100644 (file)
@@ -15,7 +15,7 @@ enum Efl.Task_Flags {
    no_exit_code_error = 4,
 }
 
-abstract @beta Efl.Task extends Efl.Loop_Consumer
+abstract Efl.Task extends Efl.Loop_Consumer
 {
    [[ ]]
    methods {