Merge "[Multimedia] Updated the doc-comments to fix the grammar errors."
[platform/core/csapi/tizenfx.git] / src / Tizen.Location / Tizen.Location / SettingChangedEventArgs.cs
old mode 100644 (file)
new mode 100755 (executable)
index 07208d5..36e8c93
@@ -1,23 +1,31 @@
-// Copyright 2016 by Samsung Electronics, Inc.,
-//
-// This software is the confidential and proprietary information
-// of Samsung Electronics, Inc. ("Confidential Information"). You
-// shall not disclose such Confidential Information and shall use
-// it only in accordance with the terms of the license agreement
-// you entered into with Samsung.\r
-\r
-using System;\r
-\r
-\r
-namespace Tizen.Location\r
-{\r
+/*
+ * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the License);
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+using System;
+
+namespace Tizen.Location
+{
     public class SettingChangedEventArgs : EventArgs
     {
         /// <summary>
-        /// Class Constructor for SettingChangedEventArgs class.
+        /// The class constructor for the SettingChangedEventArgs class.
         /// </summary>
-        /// <param name="method"> The positioing method used for Location information.</param>
-        /// <param name="enable"> Status of the method.</param>
+        /// <since_tizen> 3 </since_tizen>
+        /// <param name="type">The positioing method used for the location information.</param>
+        /// <param name="enable">The status of the method.</param>
         public SettingChangedEventArgs(LocationType type, bool enable)
         {
             LocationType = type;
@@ -27,11 +35,13 @@ namespace Tizen.Location
         /// <summary>
         /// Gets the currently used location method.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public LocationType LocationType { get; private set; }
 
         /// <summary>
         /// Method to get the setting value changed.
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public bool IsEnabled { get; private set; }
-    }\r
-}\r
+    }
+}