[EflSharp] Update Circle and efl cs files (#995)
[platform/core/csapi/tizenfx.git] / internals / src / EflSharp / EflSharp / efl / efl_playable.eo.cs
old mode 100644 (file)
new mode 100755 (executable)
index 4906ff5..65d11a8
@@ -1,3 +1,4 @@
+#define EFL_BETA
 #pragma warning disable CS1591
 using System;
 using System.Runtime.InteropServices;
@@ -8,6 +9,7 @@ using System.ComponentModel;
 namespace Efl {
 
 /// <summary>Efl media playable interface</summary>
+/// <remarks>This is a <b>BETA</b> class. It can be modified or removed in the future. Do not use it for product development.</remarks>
 [Efl.IPlayableConcrete.NativeMethods]
 [Efl.Eo.BindingEntity]
 public interface IPlayable : 
@@ -23,24 +25,25 @@ bool GetSeekable();
                 /// <summary>Get the length of play for the media file.</summary>
     /// <value>The length of the stream in seconds.</value>
     double Length {
-        get ;
+        get;
     }
     bool Playable {
-        get ;
+        get;
     }
     /// <summary>Get whether the media file is seekable.</summary>
     /// <value><c>true</c> if seekable.</value>
     bool Seekable {
-        get ;
+        get;
     }
 }
 /// <summary>Efl media playable interface</summary>
-sealed public class IPlayableConcrete :
+/// <remarks>This is a <b>BETA</b> class. It can be modified or removed in the future. Do not use it for product development.</remarks>
+sealed public  class IPlayableConcrete :
     Efl.Eo.EoWrapper
     , IPlayable
     
 {
-    ///<summary>Pointer to the native class description.</summary>
+    /// <summary>Pointer to the native class description.</summary>
     public override System.IntPtr NativeClass
     {
         get
@@ -56,7 +59,8 @@ sealed public class IPlayableConcrete :
         }
     }
 
-    /// <summary>Constructor to be used when objects are expected to be constructed from native code.</summary>
+    /// <summary>Subclasses should override this constructor if they are expected to be instantiated from native code.
+    /// Do not call this constructor directly.</summary>
     /// <param name="ch">Tag struct storing the native handle of the object being constructed.</param>
     private IPlayableConcrete(ConstructingHandle ch) : base(ch)
     {
@@ -274,3 +278,12 @@ sealed public class IPlayableConcrete :
 }
 }
 
+#if EFL_BETA
+#pragma warning disable CS1591
+public static class EflIPlayableConcrete_ExtensionMethods {
+    
+    
+    
+}
+#pragma warning restore CS1591
+#endif