[EflSharp] Update Circle and efl cs files (#945)
[platform/core/csapi/tizenfx.git] / internals / src / EflSharp / EflSharp / efl / efl_canvas_animation.eo.cs
index 38e9c31..a5a290a 100644 (file)
@@ -11,7 +11,8 @@ namespace Canvas {
 
 /// <summary>Efl animation class</summary>
 [Efl.Canvas.Animation.NativeMethods]
-public class Animation : Efl.Object, Efl.Eo.IWrapper,Efl.IPlayable
+[Efl.Eo.BindingEntity]
+public class Animation : Efl.Object, Efl.IPlayable
 {
     ///<summary>Pointer to the native class description.</summary>
     public override System.IntPtr NativeClass
@@ -34,203 +35,181 @@ public class Animation : Efl.Object, Efl.Eo.IWrapper,Efl.IPlayable
     /// <summary>Initializes a new instance of the <see cref="Animation"/> class.</summary>
     /// <param name="parent">Parent instance.</param>
     public Animation(Efl.Object parent= null
-            ) : base(efl_canvas_animation_class_get(), typeof(Animation), parent)
+            ) : base(efl_canvas_animation_class_get(), parent)
     {
         FinishInstantiation();
     }
 
+    /// <summary>Constructor to be used when objects are expected to be constructed from native code.</summary>
+    /// <param name="ch">Tag struct storing the native handle of the object being constructed.</param>
+    protected Animation(ConstructingHandle ch) : base(ch)
+    {
+    }
+
     /// <summary>Initializes a new instance of the <see cref="Animation"/> class.
     /// Internal usage: Constructs an instance from a native pointer. This is used when interacting with C code and should not be used directly.</summary>
-    /// <param name="raw">The native pointer to be wrapped.</param>
-    protected Animation(System.IntPtr raw) : base(raw)
+    /// <param name="wh">The native pointer to be wrapped.</param>
+    protected Animation(Efl.Eo.Globals.WrappingHandle wh) : base(wh)
     {
-            }
+    }
 
     /// <summary>Initializes a new instance of the <see cref="Animation"/> class.
     /// Internal usage: Constructor to forward the wrapper initialization to the root class that interfaces with native code. Should not be used directly.</summary>
     /// <param name="baseKlass">The pointer to the base native Eo class.</param>
-    /// <param name="managedType">The managed type of the public constructor that originated this call.</param>
     /// <param name="parent">The Efl.Object parent of this instance.</param>
-    protected Animation(IntPtr baseKlass, System.Type managedType, Efl.Object parent) : base(baseKlass, managedType, parent)
-    {
-    }
-
-    /// <summary>Verifies if the given object is equal to this one.</summary>
-    /// <param name="instance">The object to compare to.</param>
-    /// <returns>True if both objects point to the same native object.</returns>
-    public override bool Equals(object instance)
-    {
-        var other = instance as Efl.Object;
-        if (other == null)
-        {
-            return false;
-        }
-        return this.NativeHandle == other.NativeHandle;
-    }
-
-    /// <summary>Gets the hash code for this object based on the native pointer it points to.</summary>
-    /// <returns>The value of the pointer, to be used as the hash code of this object.</returns>
-    public override int GetHashCode()
-    {
-        return this.NativeHandle.ToInt32();
-    }
-
-    /// <summary>Turns the native pointer into a string representation.</summary>
-    /// <returns>A string with the type and the native pointer for this object.</returns>
-    public override String ToString()
+    protected Animation(IntPtr baseKlass, Efl.Object parent) : base(baseKlass, parent)
     {
-        return $"{this.GetType().Name}@[{this.NativeHandle.ToInt32():x}]";
     }
 
     /// <summary>Keep final state property</summary>
     /// <returns><c>true</c> to keep final state, <c>false</c> otherwise.</returns>
     virtual public bool GetFinalStateKeep() {
-         var _ret_var = Efl.Canvas.Animation.NativeMethods.efl_animation_final_state_keep_get_ptr.Value.Delegate((inherited ? Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass) : this.NativeHandle));
+         var _ret_var = Efl.Canvas.Animation.NativeMethods.efl_animation_final_state_keep_get_ptr.Value.Delegate((IsGeneratedBindingClass ? this.NativeHandle : Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass)));
         Eina.Error.RaiseIfUnhandledException();
         return _ret_var;
  }
     /// <summary>Keep final state property</summary>
     /// <param name="keep"><c>true</c> to keep final state, <c>false</c> otherwise.</param>
     virtual public void SetFinalStateKeep(bool keep) {
-                                 Efl.Canvas.Animation.NativeMethods.efl_animation_final_state_keep_set_ptr.Value.Delegate((inherited ? Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass) : this.NativeHandle),keep);
+                                 Efl.Canvas.Animation.NativeMethods.efl_animation_final_state_keep_set_ptr.Value.Delegate((IsGeneratedBindingClass ? this.NativeHandle : Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass)),keep);
         Eina.Error.RaiseIfUnhandledException();
                          }
     /// <summary>Duration property</summary>
     /// <returns>Duration value.</returns>
     virtual public double GetDuration() {
-         var _ret_var = Efl.Canvas.Animation.NativeMethods.efl_animation_duration_get_ptr.Value.Delegate((inherited ? Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass) : this.NativeHandle));
+         var _ret_var = Efl.Canvas.Animation.NativeMethods.efl_animation_duration_get_ptr.Value.Delegate((IsGeneratedBindingClass ? this.NativeHandle : Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass)));
         Eina.Error.RaiseIfUnhandledException();
         return _ret_var;
  }
     /// <summary>Duration property</summary>
     /// <param name="sec">Duration value.</param>
     virtual public void SetDuration(double sec) {
-                                 Efl.Canvas.Animation.NativeMethods.efl_animation_duration_set_ptr.Value.Delegate((inherited ? Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass) : this.NativeHandle),sec);
+                                 Efl.Canvas.Animation.NativeMethods.efl_animation_duration_set_ptr.Value.Delegate((IsGeneratedBindingClass ? this.NativeHandle : Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass)),sec);
         Eina.Error.RaiseIfUnhandledException();
                          }
     /// <summary>Repeat mode property</summary>
     /// <returns>Repeat mode. EFL_ANIMATION_REPEAT_MODE_RESTART restarts animation when the animation ends and EFL_ANIMATION_REPEAT_MODE_REVERSE reverses animation when the animation ends.</returns>
     virtual public Efl.Canvas.AnimationRepeatMode GetRepeatMode() {
-         var _ret_var = Efl.Canvas.Animation.NativeMethods.efl_animation_repeat_mode_get_ptr.Value.Delegate((inherited ? Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass) : this.NativeHandle));
+         var _ret_var = Efl.Canvas.Animation.NativeMethods.efl_animation_repeat_mode_get_ptr.Value.Delegate((IsGeneratedBindingClass ? this.NativeHandle : Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass)));
         Eina.Error.RaiseIfUnhandledException();
         return _ret_var;
  }
     /// <summary>Repeat mode property</summary>
     /// <param name="mode">Repeat mode. EFL_ANIMATION_REPEAT_MODE_RESTART restarts animation when the animation ends and EFL_ANIMATION_REPEAT_MODE_REVERSE reverses animation when the animation ends.</param>
     virtual public void SetRepeatMode(Efl.Canvas.AnimationRepeatMode mode) {
-                                 Efl.Canvas.Animation.NativeMethods.efl_animation_repeat_mode_set_ptr.Value.Delegate((inherited ? Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass) : this.NativeHandle),mode);
+                                 Efl.Canvas.Animation.NativeMethods.efl_animation_repeat_mode_set_ptr.Value.Delegate((IsGeneratedBindingClass ? this.NativeHandle : Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass)),mode);
         Eina.Error.RaiseIfUnhandledException();
                          }
     /// <summary>Repeat count property</summary>
     /// <returns>Repeat count. EFL_ANIMATION_REPEAT_INFINITE repeats animation infinitely.</returns>
     virtual public int GetRepeatCount() {
-         var _ret_var = Efl.Canvas.Animation.NativeMethods.efl_animation_repeat_count_get_ptr.Value.Delegate((inherited ? Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass) : this.NativeHandle));
+         var _ret_var = Efl.Canvas.Animation.NativeMethods.efl_animation_repeat_count_get_ptr.Value.Delegate((IsGeneratedBindingClass ? this.NativeHandle : Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass)));
         Eina.Error.RaiseIfUnhandledException();
         return _ret_var;
  }
     /// <summary>Repeat count property</summary>
     /// <param name="count">Repeat count. EFL_ANIMATION_REPEAT_INFINITE repeats animation infinitely.</param>
     virtual public void SetRepeatCount(int count) {
-                                 Efl.Canvas.Animation.NativeMethods.efl_animation_repeat_count_set_ptr.Value.Delegate((inherited ? Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass) : this.NativeHandle),count);
+                                 Efl.Canvas.Animation.NativeMethods.efl_animation_repeat_count_set_ptr.Value.Delegate((IsGeneratedBindingClass ? this.NativeHandle : Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass)),count);
         Eina.Error.RaiseIfUnhandledException();
                          }
     /// <summary>Start delay property</summary>
     /// <returns>Delay time, in seconds, from when the animation starts until the animation is animated</returns>
     virtual public double GetStartDelay() {
-         var _ret_var = Efl.Canvas.Animation.NativeMethods.efl_animation_start_delay_get_ptr.Value.Delegate((inherited ? Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass) : this.NativeHandle));
+         var _ret_var = Efl.Canvas.Animation.NativeMethods.efl_animation_start_delay_get_ptr.Value.Delegate((IsGeneratedBindingClass ? this.NativeHandle : Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass)));
         Eina.Error.RaiseIfUnhandledException();
         return _ret_var;
  }
     /// <summary>Start delay property</summary>
     /// <param name="sec">Delay time, in seconds, from when the animation starts until the animation is animated</param>
     virtual public void SetStartDelay(double sec) {
-                                 Efl.Canvas.Animation.NativeMethods.efl_animation_start_delay_set_ptr.Value.Delegate((inherited ? Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass) : this.NativeHandle),sec);
+                                 Efl.Canvas.Animation.NativeMethods.efl_animation_start_delay_set_ptr.Value.Delegate((IsGeneratedBindingClass ? this.NativeHandle : Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass)),sec);
         Eina.Error.RaiseIfUnhandledException();
                          }
     /// <summary>Interpolator property</summary>
     /// <returns>Interpolator which indicates interpolation function. Efl_Interpolator is required.</returns>
     virtual public Efl.IInterpolator GetInterpolator() {
-         var _ret_var = Efl.Canvas.Animation.NativeMethods.efl_animation_interpolator_get_ptr.Value.Delegate((inherited ? Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass) : this.NativeHandle));
+         var _ret_var = Efl.Canvas.Animation.NativeMethods.efl_animation_interpolator_get_ptr.Value.Delegate((IsGeneratedBindingClass ? this.NativeHandle : Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass)));
         Eina.Error.RaiseIfUnhandledException();
         return _ret_var;
  }
     /// <summary>Interpolator property</summary>
     /// <param name="interpolator">Interpolator which indicates interpolation function. Efl_Interpolator is required.</param>
     virtual public void SetInterpolator(Efl.IInterpolator interpolator) {
-                                 Efl.Canvas.Animation.NativeMethods.efl_animation_interpolator_set_ptr.Value.Delegate((inherited ? Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass) : this.NativeHandle),interpolator);
+                                 Efl.Canvas.Animation.NativeMethods.efl_animation_interpolator_set_ptr.Value.Delegate((IsGeneratedBindingClass ? this.NativeHandle : Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass)),interpolator);
         Eina.Error.RaiseIfUnhandledException();
                          }
     /// <returns>Final applied progress.</returns>
     virtual public double AnimationApply(double progress, Efl.Canvas.Object target) {
-                                                         var _ret_var = Efl.Canvas.Animation.NativeMethods.efl_animation_apply_ptr.Value.Delegate((inherited ? Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass) : this.NativeHandle),progress, target);
+                                                         var _ret_var = Efl.Canvas.Animation.NativeMethods.efl_animation_apply_ptr.Value.Delegate((IsGeneratedBindingClass ? this.NativeHandle : Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass)),progress, target);
         Eina.Error.RaiseIfUnhandledException();
                                         return _ret_var;
  }
     /// <summary>Get the length of play for the media file.</summary>
     /// <returns>The length of the stream in seconds.</returns>
     virtual public double GetLength() {
-         var _ret_var = Efl.IPlayableConcrete.NativeMethods.efl_playable_length_get_ptr.Value.Delegate((inherited ? Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass) : this.NativeHandle));
+         var _ret_var = Efl.IPlayableConcrete.NativeMethods.efl_playable_length_get_ptr.Value.Delegate((IsGeneratedBindingClass ? this.NativeHandle : Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass)));
         Eina.Error.RaiseIfUnhandledException();
         return _ret_var;
  }
     virtual public bool GetPlayable() {
-         var _ret_var = Efl.IPlayableConcrete.NativeMethods.efl_playable_get_ptr.Value.Delegate((inherited ? Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass) : this.NativeHandle));
+         var _ret_var = Efl.IPlayableConcrete.NativeMethods.efl_playable_get_ptr.Value.Delegate((IsGeneratedBindingClass ? this.NativeHandle : Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass)));
         Eina.Error.RaiseIfUnhandledException();
         return _ret_var;
  }
     /// <summary>Get whether the media file is seekable.</summary>
     /// <returns><c>true</c> if seekable.</returns>
     virtual public bool GetSeekable() {
-         var _ret_var = Efl.IPlayableConcrete.NativeMethods.efl_playable_seekable_get_ptr.Value.Delegate((inherited ? Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass) : this.NativeHandle));
+         var _ret_var = Efl.IPlayableConcrete.NativeMethods.efl_playable_seekable_get_ptr.Value.Delegate((IsGeneratedBindingClass ? this.NativeHandle : Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass)));
         Eina.Error.RaiseIfUnhandledException();
         return _ret_var;
  }
     /// <summary>Keep final state property</summary>
-/// <value><c>true</c> to keep final state, <c>false</c> otherwise.</value>
+    /// <value><c>true</c> to keep final state, <c>false</c> otherwise.</value>
     public bool FinalStateKeep {
         get { return GetFinalStateKeep(); }
         set { SetFinalStateKeep(value); }
     }
     /// <summary>Duration property</summary>
-/// <value>Duration value.</value>
+    /// <value>Duration value.</value>
     public double Duration {
         get { return GetDuration(); }
         set { SetDuration(value); }
     }
     /// <summary>Repeat mode property</summary>
-/// <value>Repeat mode. EFL_ANIMATION_REPEAT_MODE_RESTART restarts animation when the animation ends and EFL_ANIMATION_REPEAT_MODE_REVERSE reverses animation when the animation ends.</value>
+    /// <value>Repeat mode. EFL_ANIMATION_REPEAT_MODE_RESTART restarts animation when the animation ends and EFL_ANIMATION_REPEAT_MODE_REVERSE reverses animation when the animation ends.</value>
     public Efl.Canvas.AnimationRepeatMode RepeatMode {
         get { return GetRepeatMode(); }
         set { SetRepeatMode(value); }
     }
     /// <summary>Repeat count property</summary>
-/// <value>Repeat count. EFL_ANIMATION_REPEAT_INFINITE repeats animation infinitely.</value>
+    /// <value>Repeat count. EFL_ANIMATION_REPEAT_INFINITE repeats animation infinitely.</value>
     public int RepeatCount {
         get { return GetRepeatCount(); }
         set { SetRepeatCount(value); }
     }
     /// <summary>Start delay property</summary>
-/// <value>Delay time, in seconds, from when the animation starts until the animation is animated</value>
+    /// <value>Delay time, in seconds, from when the animation starts until the animation is animated</value>
     public double StartDelay {
         get { return GetStartDelay(); }
         set { SetStartDelay(value); }
     }
     /// <summary>Interpolator property</summary>
-/// <value>Interpolator which indicates interpolation function. Efl_Interpolator is required.</value>
+    /// <value>Interpolator which indicates interpolation function. Efl_Interpolator is required.</value>
     public Efl.IInterpolator Interpolator {
         get { return GetInterpolator(); }
         set { SetInterpolator(value); }
     }
     /// <summary>Get the length of play for the media file.</summary>
-/// <value>The length of the stream in seconds.</value>
+    /// <value>The length of the stream in seconds.</value>
     public double Length {
         get { return GetLength(); }
     }
-        public bool Playable {
+    public bool Playable {
         get { return GetPlayable(); }
     }
     /// <summary>Get whether the media file is seekable.</summary>
-/// <value><c>true</c> if seekable.</value>
+    /// <value><c>true</c> if seekable.</value>
     public bool Seekable {
         get { return GetSeekable(); }
     }
@@ -420,7 +399,7 @@ public class Animation : Efl.Object, Efl.Eo.IWrapper,Efl.IPlayable
             return Efl.Canvas.Animation.efl_canvas_animation_class_get();
         }
 
-        #pragma warning disable CA1707, SA1300, SA1600
+        #pragma warning disable CA1707, CS1591, SA1300, SA1600
 
         [return: MarshalAs(UnmanagedType.U1)]
         private delegate bool efl_animation_final_state_keep_get_delegate(System.IntPtr obj, System.IntPtr pd);
@@ -433,13 +412,13 @@ public class Animation : Efl.Object, Efl.Eo.IWrapper,Efl.IPlayable
         private static bool final_state_keep_get(System.IntPtr obj, System.IntPtr pd)
         {
             Eina.Log.Debug("function efl_animation_final_state_keep_get was called");
-            Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd);
-            if (wrapper != null)
+            var ws = Efl.Eo.Globals.GetWrapperSupervisor(obj);
+            if (ws != null)
             {
             bool _ret_var = default(bool);
                 try
                 {
-                    _ret_var = ((Animation)wrapper).GetFinalStateKeep();
+                    _ret_var = ((Animation)ws.Target).GetFinalStateKeep();
                 }
                 catch (Exception e)
                 {
@@ -469,13 +448,13 @@ public class Animation : Efl.Object, Efl.Eo.IWrapper,Efl.IPlayable
         private static void final_state_keep_set(System.IntPtr obj, System.IntPtr pd, bool keep)
         {
             Eina.Log.Debug("function efl_animation_final_state_keep_set was called");
-            Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd);
-            if (wrapper != null)
+            var ws = Efl.Eo.Globals.GetWrapperSupervisor(obj);
+            if (ws != null)
             {
                                     
                 try
                 {
-                    ((Animation)wrapper).SetFinalStateKeep(keep);
+                    ((Animation)ws.Target).SetFinalStateKeep(keep);
                 }
                 catch (Exception e)
                 {
@@ -504,13 +483,13 @@ public class Animation : Efl.Object, Efl.Eo.IWrapper,Efl.IPlayable
         private static double duration_get(System.IntPtr obj, System.IntPtr pd)
         {
             Eina.Log.Debug("function efl_animation_duration_get was called");
-            Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd);
-            if (wrapper != null)
+            var ws = Efl.Eo.Globals.GetWrapperSupervisor(obj);
+            if (ws != null)
             {
             double _ret_var = default(double);
                 try
                 {
-                    _ret_var = ((Animation)wrapper).GetDuration();
+                    _ret_var = ((Animation)ws.Target).GetDuration();
                 }
                 catch (Exception e)
                 {
@@ -540,13 +519,13 @@ public class Animation : Efl.Object, Efl.Eo.IWrapper,Efl.IPlayable
         private static void duration_set(System.IntPtr obj, System.IntPtr pd, double sec)
         {
             Eina.Log.Debug("function efl_animation_duration_set was called");
-            Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd);
-            if (wrapper != null)
+            var ws = Efl.Eo.Globals.GetWrapperSupervisor(obj);
+            if (ws != null)
             {
                                     
                 try
                 {
-                    ((Animation)wrapper).SetDuration(sec);
+                    ((Animation)ws.Target).SetDuration(sec);
                 }
                 catch (Exception e)
                 {
@@ -575,13 +554,13 @@ public class Animation : Efl.Object, Efl.Eo.IWrapper,Efl.IPlayable
         private static Efl.Canvas.AnimationRepeatMode repeat_mode_get(System.IntPtr obj, System.IntPtr pd)
         {
             Eina.Log.Debug("function efl_animation_repeat_mode_get was called");
-            Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd);
-            if (wrapper != null)
+            var ws = Efl.Eo.Globals.GetWrapperSupervisor(obj);
+            if (ws != null)
             {
             Efl.Canvas.AnimationRepeatMode _ret_var = default(Efl.Canvas.AnimationRepeatMode);
                 try
                 {
-                    _ret_var = ((Animation)wrapper).GetRepeatMode();
+                    _ret_var = ((Animation)ws.Target).GetRepeatMode();
                 }
                 catch (Exception e)
                 {
@@ -611,13 +590,13 @@ public class Animation : Efl.Object, Efl.Eo.IWrapper,Efl.IPlayable
         private static void repeat_mode_set(System.IntPtr obj, System.IntPtr pd, Efl.Canvas.AnimationRepeatMode mode)
         {
             Eina.Log.Debug("function efl_animation_repeat_mode_set was called");
-            Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd);
-            if (wrapper != null)
+            var ws = Efl.Eo.Globals.GetWrapperSupervisor(obj);
+            if (ws != null)
             {
                                     
                 try
                 {
-                    ((Animation)wrapper).SetRepeatMode(mode);
+                    ((Animation)ws.Target).SetRepeatMode(mode);
                 }
                 catch (Exception e)
                 {
@@ -646,13 +625,13 @@ public class Animation : Efl.Object, Efl.Eo.IWrapper,Efl.IPlayable
         private static int repeat_count_get(System.IntPtr obj, System.IntPtr pd)
         {
             Eina.Log.Debug("function efl_animation_repeat_count_get was called");
-            Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd);
-            if (wrapper != null)
+            var ws = Efl.Eo.Globals.GetWrapperSupervisor(obj);
+            if (ws != null)
             {
             int _ret_var = default(int);
                 try
                 {
-                    _ret_var = ((Animation)wrapper).GetRepeatCount();
+                    _ret_var = ((Animation)ws.Target).GetRepeatCount();
                 }
                 catch (Exception e)
                 {
@@ -682,13 +661,13 @@ public class Animation : Efl.Object, Efl.Eo.IWrapper,Efl.IPlayable
         private static void repeat_count_set(System.IntPtr obj, System.IntPtr pd, int count)
         {
             Eina.Log.Debug("function efl_animation_repeat_count_set was called");
-            Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd);
-            if (wrapper != null)
+            var ws = Efl.Eo.Globals.GetWrapperSupervisor(obj);
+            if (ws != null)
             {
                                     
                 try
                 {
-                    ((Animation)wrapper).SetRepeatCount(count);
+                    ((Animation)ws.Target).SetRepeatCount(count);
                 }
                 catch (Exception e)
                 {
@@ -717,13 +696,13 @@ public class Animation : Efl.Object, Efl.Eo.IWrapper,Efl.IPlayable
         private static double start_delay_get(System.IntPtr obj, System.IntPtr pd)
         {
             Eina.Log.Debug("function efl_animation_start_delay_get was called");
-            Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd);
-            if (wrapper != null)
+            var ws = Efl.Eo.Globals.GetWrapperSupervisor(obj);
+            if (ws != null)
             {
             double _ret_var = default(double);
                 try
                 {
-                    _ret_var = ((Animation)wrapper).GetStartDelay();
+                    _ret_var = ((Animation)ws.Target).GetStartDelay();
                 }
                 catch (Exception e)
                 {
@@ -753,13 +732,13 @@ public class Animation : Efl.Object, Efl.Eo.IWrapper,Efl.IPlayable
         private static void start_delay_set(System.IntPtr obj, System.IntPtr pd, double sec)
         {
             Eina.Log.Debug("function efl_animation_start_delay_set was called");
-            Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd);
-            if (wrapper != null)
+            var ws = Efl.Eo.Globals.GetWrapperSupervisor(obj);
+            if (ws != null)
             {
                                     
                 try
                 {
-                    ((Animation)wrapper).SetStartDelay(sec);
+                    ((Animation)ws.Target).SetStartDelay(sec);
                 }
                 catch (Exception e)
                 {
@@ -788,13 +767,13 @@ public class Animation : Efl.Object, Efl.Eo.IWrapper,Efl.IPlayable
         private static Efl.IInterpolator interpolator_get(System.IntPtr obj, System.IntPtr pd)
         {
             Eina.Log.Debug("function efl_animation_interpolator_get was called");
-            Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd);
-            if (wrapper != null)
+            var ws = Efl.Eo.Globals.GetWrapperSupervisor(obj);
+            if (ws != null)
             {
             Efl.IInterpolator _ret_var = default(Efl.IInterpolator);
                 try
                 {
-                    _ret_var = ((Animation)wrapper).GetInterpolator();
+                    _ret_var = ((Animation)ws.Target).GetInterpolator();
                 }
                 catch (Exception e)
                 {
@@ -824,13 +803,13 @@ public class Animation : Efl.Object, Efl.Eo.IWrapper,Efl.IPlayable
         private static void interpolator_set(System.IntPtr obj, System.IntPtr pd, Efl.IInterpolator interpolator)
         {
             Eina.Log.Debug("function efl_animation_interpolator_set was called");
-            Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd);
-            if (wrapper != null)
+            var ws = Efl.Eo.Globals.GetWrapperSupervisor(obj);
+            if (ws != null)
             {
                                     
                 try
                 {
-                    ((Animation)wrapper).SetInterpolator(interpolator);
+                    ((Animation)ws.Target).SetInterpolator(interpolator);
                 }
                 catch (Exception e)
                 {
@@ -859,13 +838,13 @@ public class Animation : Efl.Object, Efl.Eo.IWrapper,Efl.IPlayable
         private static double animation_apply(System.IntPtr obj, System.IntPtr pd, double progress, Efl.Canvas.Object target)
         {
             Eina.Log.Debug("function efl_animation_apply was called");
-            Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd);
-            if (wrapper != null)
+            var ws = Efl.Eo.Globals.GetWrapperSupervisor(obj);
+            if (ws != null)
             {
                                                             double _ret_var = default(double);
                 try
                 {
-                    _ret_var = ((Animation)wrapper).AnimationApply(progress, target);
+                    _ret_var = ((Animation)ws.Target).AnimationApply(progress, target);
                 }
                 catch (Exception e)
                 {
@@ -895,13 +874,13 @@ public class Animation : Efl.Object, Efl.Eo.IWrapper,Efl.IPlayable
         private static double length_get(System.IntPtr obj, System.IntPtr pd)
         {
             Eina.Log.Debug("function efl_playable_length_get was called");
-            Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd);
-            if (wrapper != null)
+            var ws = Efl.Eo.Globals.GetWrapperSupervisor(obj);
+            if (ws != null)
             {
             double _ret_var = default(double);
                 try
                 {
-                    _ret_var = ((Animation)wrapper).GetLength();
+                    _ret_var = ((Animation)ws.Target).GetLength();
                 }
                 catch (Exception e)
                 {
@@ -931,13 +910,13 @@ public class Animation : Efl.Object, Efl.Eo.IWrapper,Efl.IPlayable
         private static bool playable_get(System.IntPtr obj, System.IntPtr pd)
         {
             Eina.Log.Debug("function efl_playable_get was called");
-            Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd);
-            if (wrapper != null)
+            var ws = Efl.Eo.Globals.GetWrapperSupervisor(obj);
+            if (ws != null)
             {
             bool _ret_var = default(bool);
                 try
                 {
-                    _ret_var = ((Animation)wrapper).GetPlayable();
+                    _ret_var = ((Animation)ws.Target).GetPlayable();
                 }
                 catch (Exception e)
                 {
@@ -967,13 +946,13 @@ public class Animation : Efl.Object, Efl.Eo.IWrapper,Efl.IPlayable
         private static bool seekable_get(System.IntPtr obj, System.IntPtr pd)
         {
             Eina.Log.Debug("function efl_playable_seekable_get was called");
-            Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd);
-            if (wrapper != null)
+            var ws = Efl.Eo.Globals.GetWrapperSupervisor(obj);
+            if (ws != null)
             {
             bool _ret_var = default(bool);
                 try
                 {
-                    _ret_var = ((Animation)wrapper).GetSeekable();
+                    _ret_var = ((Animation)ws.Target).GetSeekable();
                 }
                 catch (Exception e)
                 {
@@ -992,7 +971,7 @@ public class Animation : Efl.Object, Efl.Eo.IWrapper,Efl.IPlayable
 
         private static efl_playable_seekable_get_delegate efl_playable_seekable_get_static_delegate;
 
-        #pragma warning restore CA1707, SA1300, SA1600
+        #pragma warning restore CA1707, CS1591, SA1300, SA1600
 
 }
 }