X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;ds=sidebyside;f=src%2FTizen.NUI%2Fsrc%2Finternal%2FRegistry.cs;h=d9e0ee04194268e4ce63883a16a5cc7ac4645b72;hb=ea5625aa453488271b0a52ee4e25fbb29feb6484;hp=7cfab4d24dd4f714b2756ae3f7c9fcb994ce4548;hpb=ff57cbb1221d9f6b9f5fe7a41b6a15f6e92cfc7b;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git diff --git a/src/Tizen.NUI/src/internal/Registry.cs b/src/Tizen.NUI/src/internal/Registry.cs index 7cfab4d..d9e0ee0 100755 --- a/src/Tizen.NUI/src/internal/Registry.cs +++ b/src/Tizen.NUI/src/internal/Registry.cs @@ -14,12 +14,12 @@ namespace Tizen.NUI internal sealed class Registry { /// - /// Registry is a singleton + /// The registry is a singleton. /// private static Registry instance = null; /// - /// Given a C++ object the dictionary allows us to find which C# object it belongs to. + /// Given a C++ object, the dictionary allows us to find which C# object it belongs to. /// By keeping the weak reference only, it will allow the object to be garbage collected. /// private Dictionary _controlMap; @@ -31,9 +31,9 @@ namespace Tizen.NUI /// - /// Store the mapping between this instance of BaseHandle (C# base class) and native part. + /// Stores the mapping between this instance of BaseHandle (C# base class) and native part. /// - /// The instance of BaseHandle (C# base class) + /// The instance of BaseHandle (C# base class). internal static void Register(BaseHandle baseHandle) { // We store a pointer to the RefObject for the control @@ -51,7 +51,7 @@ namespace Tizen.NUI } /// - /// Remove the this instance of BaseHandle (C# base class) and native part from the mapping table. + /// Removes this instance of BaseHandle (C# base class) and native part from the mapping table. /// /// The instance of BaseHandle (C# base class) internal static void Unregister(BaseHandle baseHandle)