fix build warnings 74/154374/1
authorjomui <jongmun.woo@samsung.com>
Tue, 10 Oct 2017 06:41:00 +0000 (15:41 +0900)
committerjomui <jongmun.woo@samsung.com>
Tue, 10 Oct 2017 06:41:16 +0000 (15:41 +0900)
Signed-off-by: jomui <jongmun.woo@samsung.com>
Change-Id: Id1ca706599107e1b7bace96e69ee4870470649fe

src/Tizen.Location.Geofence/Tizen.Location.Geofence/Fence.cs
src/Tizen.Location.Geofence/Tizen.Location.Geofence/FenceStatus.cs
src/Tizen.Location.Geofence/Tizen.Location.Geofence/GeofenceManager.cs
src/Tizen.Location.Geofence/Tizen.Location.Geofence/NamespaceDoc.cs

index 5443cf2..50a7e5d 100755 (executable)
@@ -46,6 +46,10 @@ namespace Tizen.Location.Geofence
             Handle = handle;
         }
 
+        /// <summary>
+        /// The destructor of the Fence class.
+        /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         ~Fence()
         {
             Dispose(false);
@@ -285,6 +289,9 @@ namespace Tizen.Location.Geofence
             GC.SuppressFinalize(this);
         }
 
+        /// <summary>
+        /// Dispose.
+        /// </summary>
         protected virtual void Dispose(bool disposing)
         {
             if (_disposed)
index fdd0071..1f33a55 100644 (file)
@@ -55,6 +55,10 @@ namespace Tizen.Location.Geofence
             Handle = handle;
         }
 
+        /// <summary>
+        /// The destructor of the FenceStatus class.
+        /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         ~FenceStatus()
         {
             Dispose(false);
@@ -110,6 +114,9 @@ namespace Tizen.Location.Geofence
             GC.SuppressFinalize(this);
         }
 
+        /// <summary>
+        /// Dispose.
+        /// </summary>
         protected virtual void Dispose(bool disposing)
         {
             if (_disposed)
index 315c6cb..b97acc8 100755 (executable)
@@ -65,6 +65,10 @@ namespace Tizen.Location.Geofence
             Handle = handle;
         }
 
+        /// <summary>
+        /// The destructor of the GeofenceManager class.
+        /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         ~GeofenceManager()
         {
             Dispose(false);
@@ -281,6 +285,9 @@ namespace Tizen.Location.Geofence
             GC.SuppressFinalize(this);
         }
 
+        /// <summary>
+        /// Dispose.
+        /// </summary>
         protected virtual void Dispose(bool disposing)
         {
             if (_disposed)
index 7944fc4..5d4315a 100755 (executable)
@@ -4,17 +4,21 @@ The Tizen.Location.Geofence namespace provides classes for virtual perimeter.
 </summary>
 
 <remarks>
+
 <h2>Overview</h2>
 <para>
 This API provides functions to set the gofence with a geopoint, MAC address of Wi-Fi, and Bluetooth address.
-Also, notifications on events like changing in service status are provided.<p>
+Also, notifications on events like changing in service status are provided.<p/>
+
 There are two kinds of places and fences:<br/>
 - Public places and fences that are created by the MyPlace application can be used by all applications.<br/>
-- Private places and fences that are created by the specified application can be used by the same application.<p>
+- Private places and fences that are created by the specified application can be used by the same application.<p/>
+
 Notifications can be received about the following events:<br/>
 - Zone in when a device enters a specific area.<br/>
 - Zone out when a device exits a specific area.<br/>
-- Results and errors for each event requested to geofence module.<p>
+- Results and errors for each event requested to geofence module.<p/>
+
 The Geofence manager has the following properties:<br/>
 - The geofence type.<br/>
 - The status.<br/>
@@ -28,6 +32,7 @@ http://tizen.org/feature/location<br/>
 http://tizen.org/feature/location.Geofence<br/>
 http://tizen.org/feature/location.wps
 </para>
+
 </remarks>
 */
 namespace Tizen.Location.Geofence {}