[Applications.Common] Add some comments for ApplicationInfoFilter class 49/161349/4
authorSangyoon Jang <jeremy.jang@samsung.com>
Thu, 23 Nov 2017 03:04:47 +0000 (12:04 +0900)
committerSangyoon Jang <jeremy.jang@samsung.com>
Tue, 12 Dec 2017 02:39:03 +0000 (02:39 +0000)
Change-Id: I8a10774c53df28dc8d46fb13dd42f3e01d956248
Signed-off-by: Sangyoon Jang <jeremy.jang@samsung.com>
src/Tizen.Applications.Common/Tizen.Applications/ApplicationInfoFilter.cs [changed mode: 0755->0644]

old mode 100755 (executable)
new mode 100644 (file)
index d1b9e7f..d72c941
@@ -26,7 +26,7 @@ namespace Tizen.Applications
     public class ApplicationInfoFilter
     {
         /// <summary>
-        ///
+        /// A constructor of ApplicationInfoFilter class.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public ApplicationInfoFilter()
@@ -41,34 +41,34 @@ namespace Tizen.Applications
         public static class Keys
         {
             /// <summary>
-            ///
+            /// A key to filter by application id.
             /// </summary>
             /// <since_tizen> 3 </since_tizen>
             public const string Id = "PACKAGE_INFO_PROP_APP_ID";
             /// <summary>
-            ///
+            /// A key to filter by application type.
             /// </summary>
             /// <since_tizen> 3 </since_tizen>
             public const string Type = "PACKAGE_INFO_PROP_APP_TYPE";
             /// <summary>
-            ///
+            /// A key to filter by application category.
             /// </summary>
             /// <since_tizen> 3 </since_tizen>
             public const string Category = "PACKAGE_INFO_PROP_APP_CATEGORY";
             /// <summary>
-            ///
+            /// A key to filter by nodisplay attribute.
             /// </summary>
             /// <since_tizen> 3 </since_tizen>
             public const string NoDisplay = "PACKAGE_INFO_PROP_APP_NODISPLAY";
             /// <summary>
-            ///
+            /// A key to filter by taskmanage attribute.
             /// </summary>
             /// <since_tizen> 3 </since_tizen>
             public const string TaskManage = "PACKAGE_INFO_PROP_APP_TASKMANAGE";
         }
 
         /// <summary>
-        ///
+        /// A dictionary to store keys and values of filter.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public IDictionary<string, string> Filter