mono: merge namespaces in manual bindings

Summary:
It will enhance readability.
Before
```
namespace Efl {
namespace Eo {
```

After
```
namespace Efl.Eo {
```

Test Plan: meson setup -Dbindings=mono,cxx -Dmono-beta=true

Reviewers: lauromoura, Jaehyun_Cho, segfaultxavi

Reviewed By: segfaultxavi

Subscribers: segfaultxavi, cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D10466
This commit is contained in:
Yeongjong Lee 2019-10-24 17:18:44 +02:00 committed by Xavi Artigas
parent a3ade15d5a
commit 11a00e406c
9 changed files with 11 additions and 50 deletions

View File

@ -6,7 +6,8 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.ComponentModel; using System.ComponentModel;
namespace Efl { namespace Ui { namespace Efl.Ui
{
/// <summary>Helper factory class. Makes use of C# extension methods for easier property binding. /// <summary>Helper factory class. Makes use of C# extension methods for easier property binding.
/// ///
@ -26,6 +27,6 @@ public class ItemFactory<T> : Efl.Ui.LayoutFactory, IDisposable
} }
} }
} } }
#endif #endif

View File

@ -18,10 +18,7 @@ using System.Runtime.InteropServices;
using System.Threading; using System.Threading;
using static Efl.UnsafeNativeMethods; using static Efl.UnsafeNativeMethods;
namespace Efl namespace Efl.Csharp
{
namespace Csharp
{ {
/// <summary>The components to be initialized. /// <summary>The components to be initialized.
@ -204,5 +201,3 @@ public abstract class Application
} }
} }
}

View File

@ -16,10 +16,7 @@
using System; using System;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace Efl namespace Efl.Eo
{
namespace Eo
{ {
///<summary>Class to load functions pointers from a native module. ///<summary>Class to load functions pointers from a native module.
@ -170,5 +167,3 @@ public class FunctionLoadResult<T>
} }
} }
}

View File

@ -16,10 +16,7 @@
using System; using System;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace Efl namespace Efl.Eo
{
namespace Eo
{ {
public static partial class FunctionInterop public static partial class FunctionInterop
@ -41,5 +38,3 @@ public static partial class FunctionInterop
} }
} }
}

View File

@ -16,10 +16,7 @@
using System; using System;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace Efl namespace Efl.Eo
{
namespace Eo
{ {
public static partial class FunctionInterop public static partial class FunctionInterop
@ -32,5 +29,3 @@ public static partial class FunctionInterop
} }
} }
}

View File

@ -15,10 +15,7 @@
*/ */
using System; using System;
namespace Efl namespace Efl.Eo
{
namespace Eo
{ {
///<summary>Wraps a native module that was opened with dlopen/LoadLibrary.</summary> ///<summary>Wraps a native module that was opened with dlopen/LoadLibrary.</summary>
@ -55,5 +52,3 @@ public partial class NativeModule : IDisposable
} }
} }
}

View File

@ -16,10 +16,7 @@
using System; using System;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace Efl namespace Efl.Eo
{
namespace Eo
{ {
public partial class NativeModule public partial class NativeModule
@ -85,5 +82,3 @@ public partial class NativeModule
} }
} }
}

View File

@ -16,10 +16,7 @@
using System; using System;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace Efl namespace Efl.Eo
{
namespace Eo
{ {
public class partial NativeModule public class partial NativeModule
@ -29,5 +26,3 @@ public class partial NativeModule
} }
} }
}

View File

@ -16,10 +16,7 @@
using System; using System;
using EventDictionary = System.Collections.Generic.Dictionary<(System.IntPtr desc, object evtDelegate), (System.IntPtr evtCallerPtr, Efl.EventCb evtCaller)>; using EventDictionary = System.Collections.Generic.Dictionary<(System.IntPtr desc, object evtDelegate), (System.IntPtr evtCallerPtr, Efl.EventCb evtCaller)>;
namespace Efl namespace Efl.Eo
{
namespace Eo
{ {
/// <summary>Observe the ownership state of an Eo wrapper and control its life-cycle.</summary> /// <summary>Observe the ownership state of an Eo wrapper and control its life-cycle.</summary>
@ -75,5 +72,3 @@ public class WrapperSupervisor
} }
}