Follow formatting NUI
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / Interop / NDalicPINVOKE.cs
index 82b197e..bbfce31 100755 (executable)
@@ -22,128 +22,128 @@ namespace Tizen.NUI
     {
         public const string Lib = "libdali2-csharp-binder.so";
         protected class SWIGExceptionHelper
-               {
-                       /// <since_tizen> 3 </since_tizen>
-                       public delegate void ExceptionDelegate(string message);
-                       /// <since_tizen> 3 </since_tizen>
-                       public delegate void ExceptionArgumentDelegate(string message, string paramName);
-                       static ExceptionDelegate applicationDelegate = new ExceptionDelegate(SetPendingApplicationException);
-                       static ExceptionDelegate arithmeticDelegate = new ExceptionDelegate(SetPendingArithmeticException);
-                       static ExceptionDelegate divideByZeroDelegate = new ExceptionDelegate(SetPendingDivideByZeroException);
-                       static ExceptionDelegate indexOutOfRangeDelegate = new ExceptionDelegate(SetPendingIndexOutOfRangeException);
-                       static ExceptionDelegate invalidCastDelegate = new ExceptionDelegate(SetPendingInvalidCastException);
-                       static ExceptionDelegate invalidOperationDelegate = new ExceptionDelegate(SetPendingInvalidOperationException);
-                       static ExceptionDelegate ioDelegate = new ExceptionDelegate(SetPendingIOException);
-                       static ExceptionDelegate nullReferenceDelegate = new ExceptionDelegate(SetPendingNullReferenceException);
-                       static ExceptionDelegate outOfMemoryDelegate = new ExceptionDelegate(SetPendingOutOfMemoryException);
-                       static ExceptionDelegate overflowDelegate = new ExceptionDelegate(SetPendingOverflowException);
-                       static ExceptionDelegate systemDelegate = new ExceptionDelegate(SetPendingSystemException);
-                       static ExceptionArgumentDelegate argumentDelegate = new ExceptionArgumentDelegate(SetPendingArgumentException);
-                       static ExceptionArgumentDelegate argumentNullDelegate = new ExceptionArgumentDelegate(SetPendingArgumentNullException);
-                       static ExceptionArgumentDelegate argumentOutOfRangeDelegate = new ExceptionArgumentDelegate(SetPendingArgumentOutOfRangeException);
-       
-                       [global::System.Runtime.InteropServices.DllImport(NDalicPINVOKE.Lib, EntryPoint = "SWIGRegisterExceptionCallbacks_NDalic")]
-                       public static extern void SWIGRegisterExceptionCallbacks_NDalic(
-                                                                               ExceptionDelegate applicationDelegate,
-                                                                               ExceptionDelegate arithmeticDelegate,
-                                                                               ExceptionDelegate divideByZeroDelegate,
-                                                                               ExceptionDelegate indexOutOfRangeDelegate,
-                                                                               ExceptionDelegate invalidCastDelegate,
-                                                                               ExceptionDelegate invalidOperationDelegate,
-                                                                               ExceptionDelegate ioDelegate,
-                                                                               ExceptionDelegate nullReferenceDelegate,
-                                                                               ExceptionDelegate outOfMemoryDelegate,
-                                                                               ExceptionDelegate overflowDelegate,
-                                                                               ExceptionDelegate systemExceptionDelegate);
-       
-                       [global::System.Runtime.InteropServices.DllImport(NDalicPINVOKE.Lib, EntryPoint = "SWIGRegisterExceptionArgumentCallbacks_NDalic")]
-                       public static extern void SWIGRegisterExceptionCallbacksArgument_NDalic(
-                                                                               ExceptionArgumentDelegate argumentDelegate,
-                                                                               ExceptionArgumentDelegate argumentNullDelegate,
-                                                                               ExceptionArgumentDelegate argumentOutOfRangeDelegate);
-                       static void SetPendingApplicationException(string message)
-                       {
-                               SWIGPendingException.Set(new global::System.ApplicationException(message, SWIGPendingException.Retrieve()));
-                       }
-                       static void SetPendingArithmeticException(string message)
-                       {
-                               SWIGPendingException.Set(new global::System.ArithmeticException(message, SWIGPendingException.Retrieve()));
-                       }
-                       static void SetPendingDivideByZeroException(string message)
-                       {
-                               SWIGPendingException.Set(new global::System.DivideByZeroException(message, SWIGPendingException.Retrieve()));
-                       }
-                       static void SetPendingIndexOutOfRangeException(string message)
-                       {
-                               SWIGPendingException.Set(new global::System.IndexOutOfRangeException(message, SWIGPendingException.Retrieve()));
-                       }
-                       static void SetPendingInvalidCastException(string message)
-                       {
-                               SWIGPendingException.Set(new global::System.InvalidCastException(message, SWIGPendingException.Retrieve()));
-                       }
-                       static void SetPendingInvalidOperationException(string message)
-                       {
-                               SWIGPendingException.Set(new global::System.InvalidOperationException(message, SWIGPendingException.Retrieve()));
-                       }
-                       static void SetPendingIOException(string message)
-                       {
-                               SWIGPendingException.Set(new global::System.IO.IOException(message, SWIGPendingException.Retrieve()));
-                       }
-                       static void SetPendingNullReferenceException(string message)
-                       {
-                               SWIGPendingException.Set(new global::System.NullReferenceException(message, SWIGPendingException.Retrieve()));
-                       }
-                       static void SetPendingOutOfMemoryException(string message)
-                       {
-                               SWIGPendingException.Set(new global::System.OutOfMemoryException(message, SWIGPendingException.Retrieve()));
-                       }
-                       static void SetPendingOverflowException(string message)
-                       {
-                               SWIGPendingException.Set(new global::System.OverflowException(message, SWIGPendingException.Retrieve()));
-                       }
-                       static void SetPendingSystemException(string message)
-                       {
-                               SWIGPendingException.Set(new global::System.SystemException(message, SWIGPendingException.Retrieve()));
-                       }
-       
-                       static void SetPendingArgumentException(string message, string paramName)
-                       {
-                               SWIGPendingException.Set(new global::System.ArgumentException(message, paramName, SWIGPendingException.Retrieve()));
-                       }
-                       static void SetPendingArgumentNullException(string message, string paramName)
-                       {
-                               global::System.Exception e = SWIGPendingException.Retrieve();
-                               if (e != null) message = message + " Inner Exception: " + e.Message;
-                               SWIGPendingException.Set(new global::System.ArgumentNullException(message, paramName));
-                       }
-                       static void SetPendingArgumentOutOfRangeException(string message, string paramName)
-                       {
-                               global::System.Exception e = SWIGPendingException.Retrieve();
-                               if (e != null) message = message + " Inner Exception: " + e.Message;
-                               SWIGPendingException.Set(new global::System.ArgumentOutOfRangeException(paramName, message));
-                       }
-                       static SWIGExceptionHelper()
-                       {
-                               SWIGRegisterExceptionCallbacks_NDalic(
-                                                                                 applicationDelegate,
-                                                                                 arithmeticDelegate,
-                                                                                 divideByZeroDelegate,
-                                                                                 indexOutOfRangeDelegate,
-                                                                                 invalidCastDelegate,
-                                                                                 invalidOperationDelegate,
-                                                                                 ioDelegate,
-                                                                                 nullReferenceDelegate,
-                                                                                 outOfMemoryDelegate,
-                                                                                 overflowDelegate,
-                                                                                 systemDelegate);
-       
-                               SWIGRegisterExceptionCallbacksArgument_NDalic(
-                                                                                 argumentDelegate,
-                                                                                 argumentNullDelegate,
-                                                                                 argumentOutOfRangeDelegate);
-                       }
-               }
-               protected static SWIGExceptionHelper swigExceptionHelper = new SWIGExceptionHelper();
+        {
+            /// <since_tizen> 3 </since_tizen>
+            public delegate void ExceptionDelegate(string message);
+            /// <since_tizen> 3 </since_tizen>
+            public delegate void ExceptionArgumentDelegate(string message, string paramName);
+            static ExceptionDelegate applicationDelegate = new ExceptionDelegate(SetPendingApplicationException);
+            static ExceptionDelegate arithmeticDelegate = new ExceptionDelegate(SetPendingArithmeticException);
+            static ExceptionDelegate divideByZeroDelegate = new ExceptionDelegate(SetPendingDivideByZeroException);
+            static ExceptionDelegate indexOutOfRangeDelegate = new ExceptionDelegate(SetPendingIndexOutOfRangeException);
+            static ExceptionDelegate invalidCastDelegate = new ExceptionDelegate(SetPendingInvalidCastException);
+            static ExceptionDelegate invalidOperationDelegate = new ExceptionDelegate(SetPendingInvalidOperationException);
+            static ExceptionDelegate ioDelegate = new ExceptionDelegate(SetPendingIOException);
+            static ExceptionDelegate nullReferenceDelegate = new ExceptionDelegate(SetPendingNullReferenceException);
+            static ExceptionDelegate outOfMemoryDelegate = new ExceptionDelegate(SetPendingOutOfMemoryException);
+            static ExceptionDelegate overflowDelegate = new ExceptionDelegate(SetPendingOverflowException);
+            static ExceptionDelegate systemDelegate = new ExceptionDelegate(SetPendingSystemException);
+            static ExceptionArgumentDelegate argumentDelegate = new ExceptionArgumentDelegate(SetPendingArgumentException);
+            static ExceptionArgumentDelegate argumentNullDelegate = new ExceptionArgumentDelegate(SetPendingArgumentNullException);
+            static ExceptionArgumentDelegate argumentOutOfRangeDelegate = new ExceptionArgumentDelegate(SetPendingArgumentOutOfRangeException);
+
+            [global::System.Runtime.InteropServices.DllImport(NDalicPINVOKE.Lib, EntryPoint = "SWIGRegisterExceptionCallbacks_NDalic")]
+            public static extern void SWIGRegisterExceptionCallbacks_NDalic(
+                                        ExceptionDelegate applicationDelegate,
+                                        ExceptionDelegate arithmeticDelegate,
+                                        ExceptionDelegate divideByZeroDelegate,
+                                        ExceptionDelegate indexOutOfRangeDelegate,
+                                        ExceptionDelegate invalidCastDelegate,
+                                        ExceptionDelegate invalidOperationDelegate,
+                                        ExceptionDelegate ioDelegate,
+                                        ExceptionDelegate nullReferenceDelegate,
+                                        ExceptionDelegate outOfMemoryDelegate,
+                                        ExceptionDelegate overflowDelegate,
+                                        ExceptionDelegate systemExceptionDelegate);
+
+            [global::System.Runtime.InteropServices.DllImport(NDalicPINVOKE.Lib, EntryPoint = "SWIGRegisterExceptionArgumentCallbacks_NDalic")]
+            public static extern void SWIGRegisterExceptionCallbacksArgument_NDalic(
+                                        ExceptionArgumentDelegate argumentDelegate,
+                                        ExceptionArgumentDelegate argumentNullDelegate,
+                                        ExceptionArgumentDelegate argumentOutOfRangeDelegate);
+            static void SetPendingApplicationException(string message)
+            {
+                SWIGPendingException.Set(new global::System.ApplicationException(message, SWIGPendingException.Retrieve()));
+            }
+            static void SetPendingArithmeticException(string message)
+            {
+                SWIGPendingException.Set(new global::System.ArithmeticException(message, SWIGPendingException.Retrieve()));
+            }
+            static void SetPendingDivideByZeroException(string message)
+            {
+                SWIGPendingException.Set(new global::System.DivideByZeroException(message, SWIGPendingException.Retrieve()));
+            }
+            static void SetPendingIndexOutOfRangeException(string message)
+            {
+                SWIGPendingException.Set(new global::System.IndexOutOfRangeException(message, SWIGPendingException.Retrieve()));
+            }
+            static void SetPendingInvalidCastException(string message)
+            {
+                SWIGPendingException.Set(new global::System.InvalidCastException(message, SWIGPendingException.Retrieve()));
+            }
+            static void SetPendingInvalidOperationException(string message)
+            {
+                SWIGPendingException.Set(new global::System.InvalidOperationException(message, SWIGPendingException.Retrieve()));
+            }
+            static void SetPendingIOException(string message)
+            {
+                SWIGPendingException.Set(new global::System.IO.IOException(message, SWIGPendingException.Retrieve()));
+            }
+            static void SetPendingNullReferenceException(string message)
+            {
+                SWIGPendingException.Set(new global::System.NullReferenceException(message, SWIGPendingException.Retrieve()));
+            }
+            static void SetPendingOutOfMemoryException(string message)
+            {
+                SWIGPendingException.Set(new global::System.OutOfMemoryException(message, SWIGPendingException.Retrieve()));
+            }
+            static void SetPendingOverflowException(string message)
+            {
+                SWIGPendingException.Set(new global::System.OverflowException(message, SWIGPendingException.Retrieve()));
+            }
+            static void SetPendingSystemException(string message)
+            {
+                SWIGPendingException.Set(new global::System.SystemException(message, SWIGPendingException.Retrieve()));
+            }
+
+            static void SetPendingArgumentException(string message, string paramName)
+            {
+                SWIGPendingException.Set(new global::System.ArgumentException(message, paramName, SWIGPendingException.Retrieve()));
+            }
+            static void SetPendingArgumentNullException(string message, string paramName)
+            {
+                global::System.Exception e = SWIGPendingException.Retrieve();
+                if (e != null) message = message + " Inner Exception: " + e.Message;
+                SWIGPendingException.Set(new global::System.ArgumentNullException(message, paramName));
+            }
+            static void SetPendingArgumentOutOfRangeException(string message, string paramName)
+            {
+                global::System.Exception e = SWIGPendingException.Retrieve();
+                if (e != null) message = message + " Inner Exception: " + e.Message;
+                SWIGPendingException.Set(new global::System.ArgumentOutOfRangeException(paramName, message));
+            }
+            static SWIGExceptionHelper()
+            {
+                SWIGRegisterExceptionCallbacks_NDalic(
+                                          applicationDelegate,
+                                          arithmeticDelegate,
+                                          divideByZeroDelegate,
+                                          indexOutOfRangeDelegate,
+                                          invalidCastDelegate,
+                                          invalidOperationDelegate,
+                                          ioDelegate,
+                                          nullReferenceDelegate,
+                                          outOfMemoryDelegate,
+                                          overflowDelegate,
+                                          systemDelegate);
+
+                SWIGRegisterExceptionCallbacksArgument_NDalic(
+                                          argumentDelegate,
+                                          argumentNullDelegate,
+                                          argumentOutOfRangeDelegate);
+            }
+        }
+        protected static SWIGExceptionHelper swigExceptionHelper = new SWIGExceptionHelper();
 
         /// <since_tizen> 3 </since_tizen>
         public class SWIGPendingException
@@ -227,8 +227,8 @@ namespace Tizen.NUI
             Tizen.Log.Error("NUI", "Create NDalicPINVOKE");
         }
 
-               [global::System.Runtime.InteropServices.DllImport(NDalicPINVOKE.Lib, EntryPoint = "CSharp_Dali_delete_BaseHandle")]
-               public static extern void delete_BaseHandle(global::System.Runtime.InteropServices.HandleRef jarg1);
+        [global::System.Runtime.InteropServices.DllImport(NDalicPINVOKE.Lib, EntryPoint = "CSharp_Dali_delete_BaseHandle")]
+        public static extern void delete_BaseHandle(global::System.Runtime.InteropServices.HandleRef jarg1);
 
         [global::System.Runtime.InteropServices.DllImport(NDalicPINVOKE.Lib, EntryPoint = "CSharp_Dali_Application_SWIGUpcast")]
         public static extern global::System.IntPtr Application_SWIGUpcast(global::System.IntPtr jarg1);