[EflSharp] Update Circle and efl cs files (#995)
[platform/core/csapi/tizenfx.git] / internals / src / EflSharp / EflSharp / efl / efl_sinusoidal_interpolator.eo.cs
old mode 100644 (file)
new mode 100755 (executable)
index fa4ba9b..8606f9d
@@ -1,3 +1,4 @@
+#define EFL_BETA
 #pragma warning disable CS1591
 using System;
 using System.Runtime.InteropServices;
@@ -9,11 +10,12 @@ namespace Efl {
 
 /// <summary>Efl sinusoidal interpolator class
 /// output = (1 - cos(input * Pi)) / 2;</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.SinusoidalInterpolator.NativeMethods]
 [Efl.Eo.BindingEntity]
 public class SinusoidalInterpolator : Efl.Object, Efl.IInterpolator
 {
-    ///<summary>Pointer to the native class description.</summary>
+    /// <summary>Pointer to the native class description.</summary>
     public override System.IntPtr NativeClass
     {
         get
@@ -39,7 +41,8 @@ public class SinusoidalInterpolator : Efl.Object, Efl.IInterpolator
         FinishInstantiation();
     }
 
-    /// <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>
     protected SinusoidalInterpolator(ConstructingHandle ch) : base(ch)
     {
@@ -258,3 +261,13 @@ public class SinusoidalInterpolator : Efl.Object, Efl.IInterpolator
 }
 }
 
+#if EFL_BETA
+#pragma warning disable CS1591
+public static class EflSinusoidalInterpolator_ExtensionMethods {
+    public static Efl.BindableProperty<double> Factor<T>(this Efl.Ui.ItemFactory<T> fac, Efl.Csharp.ExtensionTag<Efl.SinusoidalInterpolator, T>magic = null) where T : Efl.SinusoidalInterpolator {
+        return new Efl.BindableProperty<double>("factor", fac);
+    }
+
+}
+#pragma warning restore CS1591
+#endif