[MediaContent] Fix grammatical error in description (#943)
[platform/core/csapi/tizenfx.git] / internals / src / EflSharp / EflSharp / efl / efl_ui_active_view_view_manager_stack.eo.cs
1 #pragma warning disable CS1591
2 using System;
3 using System.Runtime.InteropServices;
4 using System.Collections.Generic;
5 using System.Linq;
6 using System.Threading;
7 using System.ComponentModel;
8 namespace Efl {
9
10 namespace Ui {
11
12 namespace ActiveView {
13
14 [Efl.Ui.ActiveView.ViewManagerStack.NativeMethods]
15 public class ViewManagerStack : Efl.Ui.ActiveView.ViewManager
16 {
17     ///<summary>Pointer to the native class description.</summary>
18     public override System.IntPtr NativeClass
19     {
20         get
21         {
22             if (((object)this).GetType() == typeof(ViewManagerStack))
23             {
24                 return GetEflClassStatic();
25             }
26             else
27             {
28                 return Efl.Eo.ClassRegister.klassFromType[((object)this).GetType()];
29             }
30         }
31     }
32
33     [System.Runtime.InteropServices.DllImport(efl.Libs.Elementary)] internal static extern System.IntPtr
34         efl_ui_active_view_view_manager_stack_class_get();
35     /// <summary>Initializes a new instance of the <see cref="ViewManagerStack"/> class.</summary>
36     /// <param name="parent">Parent instance.</param>
37     public ViewManagerStack(Efl.Object parent= null
38             ) : base(efl_ui_active_view_view_manager_stack_class_get(), typeof(ViewManagerStack), parent)
39     {
40         FinishInstantiation();
41     }
42
43     /// <summary>Initializes a new instance of the <see cref="ViewManagerStack"/> class.
44     /// Internal usage: Constructs an instance from a native pointer. This is used when interacting with C code and should not be used directly.</summary>
45     /// <param name="raw">The native pointer to be wrapped.</param>
46     protected ViewManagerStack(System.IntPtr raw) : base(raw)
47     {
48     }
49
50     /// <summary>Initializes a new instance of the <see cref="ViewManagerStack"/> class.
51     /// Internal usage: Constructor to forward the wrapper initialization to the root class that interfaces with native code. Should not be used directly.</summary>
52     /// <param name="baseKlass">The pointer to the base native Eo class.</param>
53     /// <param name="managedType">The managed type of the public constructor that originated this call.</param>
54     /// <param name="parent">The Efl.Object parent of this instance.</param>
55     protected ViewManagerStack(IntPtr baseKlass, System.Type managedType, Efl.Object parent) : base(baseKlass, managedType, parent)
56     {
57     }
58
59     private static IntPtr GetEflClassStatic()
60     {
61         return Efl.Ui.ActiveView.ViewManagerStack.efl_ui_active_view_view_manager_stack_class_get();
62     }
63     /// <summary>Wrapper for native methods and virtual method delegates.
64     /// For internal use by generated code only.</summary>
65     public new class NativeMethods : Efl.Ui.ActiveView.ViewManager.NativeMethods
66     {
67         /// <summary>Gets the list of Eo operations to override.</summary>
68         /// <returns>The list of Eo operations to be overload.</returns>
69         public override System.Collections.Generic.List<Efl_Op_Description> GetEoOps(System.Type type)
70         {
71             var descs = new System.Collections.Generic.List<Efl_Op_Description>();
72             descs.AddRange(base.GetEoOps(type));
73             return descs;
74         }
75         /// <summary>Returns the Eo class for the native methods of this class.</summary>
76         /// <returns>The native class pointer.</returns>
77         public override IntPtr GetEflClass()
78         {
79             return Efl.Ui.ActiveView.ViewManagerStack.efl_ui_active_view_view_manager_stack_class_get();
80         }
81
82         #pragma warning disable CA1707, CS1591, SA1300, SA1600
83
84         #pragma warning restore CA1707, CS1591, SA1300, SA1600
85
86 }
87 }
88 }
89
90 }
91
92 }
93