X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=internals%2Fsrc%2FEflSharp%2FEflSharp%2Fefl%2Fefl_ui_layout_part_bg.eo.cs;h=727d18a29f67274cc1876b8db120d4daa20b47df;hb=04e59dc939f2654e4525abdb21f65f0632c988e0;hp=321c242e0d4be33e41486871ffb6d2fb51d1de62;hpb=5fa5718a930d8d558a0cc0e0c9637e645926ca73;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git diff --git a/internals/src/EflSharp/EflSharp/efl/efl_ui_layout_part_bg.eo.cs b/internals/src/EflSharp/EflSharp/efl/efl_ui_layout_part_bg.eo.cs index 321c242..727d18a 100644 --- a/internals/src/EflSharp/EflSharp/efl/efl_ui_layout_part_bg.eo.cs +++ b/internals/src/EflSharp/EflSharp/efl/efl_ui_layout_part_bg.eo.cs @@ -11,6 +11,7 @@ namespace Ui { /// Elementary layout internal part background class [Efl.Ui.LayoutPartBg.NativeMethods] +[Efl.Eo.BindingEntity] public class LayoutPartBg : Efl.Ui.WidgetPartBg { ///Pointer to the native class description. @@ -34,24 +35,29 @@ public class LayoutPartBg : Efl.Ui.WidgetPartBg /// Initializes a new instance of the class. /// Parent instance. public LayoutPartBg(Efl.Object parent= null - ) : base(efl_ui_layout_part_bg_class_get(), typeof(LayoutPartBg), parent) + ) : base(efl_ui_layout_part_bg_class_get(), parent) { FinishInstantiation(); } + /// Constructor to be used when objects are expected to be constructed from native code. + /// Tag struct storing the native handle of the object being constructed. + protected LayoutPartBg(ConstructingHandle ch) : base(ch) + { + } + /// Initializes a new instance of the class. /// Internal usage: Constructs an instance from a native pointer. This is used when interacting with C code and should not be used directly. - /// The native pointer to be wrapped. - protected LayoutPartBg(System.IntPtr raw) : base(raw) + /// The native pointer to be wrapped. + protected LayoutPartBg(Efl.Eo.Globals.WrappingHandle wh) : base(wh) { } /// Initializes a new instance of the class. /// Internal usage: Constructor to forward the wrapper initialization to the root class that interfaces with native code. Should not be used directly. /// The pointer to the base native Eo class. - /// The managed type of the public constructor that originated this call. /// The Efl.Object parent of this instance. - protected LayoutPartBg(IntPtr baseKlass, System.Type managedType, Efl.Object parent) : base(baseKlass, managedType, parent) + protected LayoutPartBg(IntPtr baseKlass, Efl.Object parent) : base(baseKlass, parent) { }