[Camera] Update description 51/148651/3
authorHaesu Gwon <haesu.gwon@samsung.com>
Fri, 8 Sep 2017 08:11:40 +0000 (17:11 +0900)
committerHaesu Gwon <haesu.gwon@samsung.com>
Wed, 13 Sep 2017 08:08:12 +0000 (17:08 +0900)
Change-Id: I954750802af58d9c53439acbd73468fc14e5e6ef
Signed-off-by: Haesu Gwon <haesu.gwon@samsung.com>
24 files changed:
src/Tizen.Multimedia.Camera/Camera/Camera.cs
src/Tizen.Multimedia.Camera/Camera/CameraCapturingEventArgs.cs
src/Tizen.Multimedia.Camera/Camera/CameraDeviceStateChangedEventArgs.cs
src/Tizen.Multimedia.Camera/Camera/CameraDisplaySettings.cs
src/Tizen.Multimedia.Camera/Camera/CameraErrorOccurredEventArgs.cs
src/Tizen.Multimedia.Camera/Camera/CameraException.cs [changed mode: 0644->0755]
src/Tizen.Multimedia.Camera/Camera/CameraFocusStateChangedEventArgs.cs
src/Tizen.Multimedia.Camera/Camera/CameraInterruptStartedEventArgs.cs
src/Tizen.Multimedia.Camera/Camera/CameraInterruptedEventArgs.cs
src/Tizen.Multimedia.Camera/Camera/CameraSettings.cs
src/Tizen.Multimedia.Camera/Camera/CameraStateChangedEventArgs.cs
src/Tizen.Multimedia.Camera/Camera/DoublePlane.cs
src/Tizen.Multimedia.Camera/Camera/EncodedPlane.cs
src/Tizen.Multimedia.Camera/Camera/FaceDetectedEventArgs.cs
src/Tizen.Multimedia.Camera/Camera/FaceDetectionData.cs
src/Tizen.Multimedia.Camera/Camera/HdrCaptureProgressEventArgs.cs
src/Tizen.Multimedia.Camera/Camera/IPreviewPlane.cs
src/Tizen.Multimedia.Camera/Camera/Location.cs [changed mode: 0644->0755]
src/Tizen.Multimedia.Camera/Camera/MediaPacketPreviewEventArgs.cs
src/Tizen.Multimedia.Camera/Camera/PreviewEventArgs.cs
src/Tizen.Multimedia.Camera/Camera/PreviewFrame.cs
src/Tizen.Multimedia.Camera/Camera/SinglePlane.cs
src/Tizen.Multimedia.Camera/Camera/TriplePlane.cs
src/Tizen.Multimedia.Recorder/Recorder/RecorderInterruptedEventArgs.cs

index 58477cf..91f6c64 100755 (executable)
@@ -1005,4 +1005,3 @@ namespace Tizen.Multimedia
         #endregion Callback registrations
     }
 }
-
index 4b92096..befb012 100755 (executable)
@@ -19,7 +19,7 @@ using System;
 namespace Tizen.Multimedia
 {
     /// <summary>
-    /// An extended EventArgs class which contains details about the captured still image.
+    /// Provides data for the <see cref="Camera.Capturing"/> event.
     /// </summary>
     public class CameraCapturingEventArgs : EventArgs
     {
@@ -31,22 +31,21 @@ namespace Tizen.Multimedia
         }
 
         /// <summary>
-        /// The main image data of the captured still image.
+        /// Gets the main image data of the captured still image.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public StillImage MainImage { get; }
 
         /// <summary>
-        /// The image data of the post view.
+        /// Gets the image data of the post view.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public StillImage PostView { get; }
 
         /// <summary>
-        /// The image data of the thumbnail.
+        /// Gets the image data of the thumbnail.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public StillImage Thumbnail { get; }
     }
 }
-
index 2270436..b647736 100755 (executable)
@@ -19,8 +19,7 @@ using System;
 namespace Tizen.Multimedia
 {
     /// <summary>
-    /// An extended EventArgs class which contains details about the previous and the current state
-    /// of the camera when its state is changed.
+    /// Provides data for the <see cref="Camera.DeviceStateChanged"/> event.
     /// </summary>
     public class CameraDeviceStateChangedEventArgs : EventArgs
     {
@@ -31,16 +30,15 @@ namespace Tizen.Multimedia
         }
 
         /// <summary>
-        /// The camera device type.
+        /// Gets the camera device type.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public CameraDevice Device { get; }
 
         /// <summary>
-        /// The current state of the camera device.
+        /// Gets the current state of the camera device.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public CameraDeviceState State { get; }
     }
 }
-
index de2032c..650288e 100755 (executable)
@@ -19,8 +19,7 @@ using System;
 namespace Tizen.Multimedia
 {
     /// <summary>
-    /// An extended EventArgs class which contains details about the error status and the
-    /// state of the camera when it fails.
+    /// Provides data for the <see cref="Camera.ErrorOccurred"/> event.
     /// </summary>
     public class CameraErrorOccurredEventArgs : EventArgs
     {
@@ -31,16 +30,15 @@ namespace Tizen.Multimedia
         }
 
         /// <summary>
-        /// The camera error code.
+        /// Gets the camera error.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public CameraErrorCode Error { get; }
 
         /// <summary>
-        /// The state of the camera.
+        /// Gets the current state of the camera.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public CameraState State { get; }
     }
 }
-
old mode 100644 (file)
new mode 100755 (executable)
index 36f46d7..40d2a70
@@ -50,4 +50,4 @@ namespace Tizen.Multimedia
         {
         }
     }
-}
\ No newline at end of file
+}
index 9826506..63931d4 100755 (executable)
@@ -19,7 +19,7 @@ using System;
 namespace Tizen.Multimedia
 {
     /// <summary>
-    /// An extended EventArgs class which contains details about the focus state of the camera.
+    /// Provides data for the <see cref="Camera.FocusStateChanged"/> event.
     /// </summary>
     public class CameraFocusStateChangedEventArgs : EventArgs
     {
@@ -29,10 +29,9 @@ namespace Tizen.Multimedia
         }
 
         /// <summary>
-        /// The focus state of the camera.
+        /// Gets the focus state of the camera.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public CameraFocusState State { get; }
     }
 }
-
index 626e465..ec969cf 100755 (executable)
@@ -19,8 +19,7 @@ using System;
 namespace Tizen.Multimedia
 {
     /// <summary>
-    /// An extended EventArgs class which contains details about current state
-    /// of the camera when interrupt is invoked internally in Native FW.
+    /// Provides data for the <see cref="Camera.InterruptStarted"/> event.
     /// </summary>
     public class CameraInterruptStartedEventArgs : EventArgs
     {
@@ -31,14 +30,13 @@ namespace Tizen.Multimedia
         }
 
         /// <summary>
-        /// Current state of the camera.
+        /// Gets the current state of the camera.
         /// </summary>
         public CameraState State { get; }
 
         /// <summary>
-        /// The policy that interrupted the camera.
+        /// Gets the policy that interrupted the camera.
         /// </summary>
         public CameraPolicy Policy { get; }
     }
 }
-
index 664f159..ec2d277 100755 (executable)
@@ -19,8 +19,7 @@ using System;
 namespace Tizen.Multimedia
 {
     /// <summary>
-    /// An extended EventArgs class which contains details about the previous and the current state
-    /// of the camera when it is interrupted.
+    /// Provides data for the <see cref="Camera.Interrupted"/> event.
     /// </summary>
     public class CameraInterruptedEventArgs : EventArgs
     {
@@ -32,22 +31,21 @@ namespace Tizen.Multimedia
         }
 
         /// <summary>
-        /// The previous state of the camera.
+        /// Gets the previous state of the camera.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public CameraState Previous { get; }
 
         /// <summary>
-        /// The current state of the camera.
+        /// Gets the current state of the camera.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public CameraState Current { get; }
 
         /// <summary>
-        /// The policy that interrupted the camera.
+        /// Gets the policy that interrupted the camera.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public CameraPolicy Policy { get; }
     }
 }
-
index 0839688..57f8722 100755 (executable)
@@ -19,8 +19,7 @@ using System;
 namespace Tizen.Multimedia
 {
     /// <summary>
-    /// An extended EventArgs class which contains details about the previous and the current state
-    /// of the camera when its state is changed.
+    /// Provides data for the <see cref="Camera.StateChanged"/> event.
     /// </summary>
     public class CameraStateChangedEventArgs : EventArgs
     {
@@ -47,10 +46,9 @@ namespace Tizen.Multimedia
         /// Gets the value indicating whether the state is changed by policy.
         /// </summary>
         /// <value>
-        /// true if the state changed by policy such as resource conflict or security, otherwise false.
+        /// true if the state changed by policy, such as resource conflict or security, otherwise false.
         /// </value>
         /// <since_tizen> 3 </since_tizen>
         public bool ByPolicy { get; }
     }
 }
-
index e6960f1..887388a 100755 (executable)
@@ -44,4 +44,4 @@ namespace Tizen.Multimedia
         /// <since_tizen> 3 </since_tizen>
         public byte[] UV { get; }
     }
-}
\ No newline at end of file
+}
index f1620fb..48524b7 100755 (executable)
@@ -36,4 +36,4 @@ namespace Tizen.Multimedia
         /// <since_tizen> 3 </since_tizen>
         public byte[] Data { get; }
     }
-}
\ No newline at end of file
+}
index 821a0ad..3b9e7eb 100755 (executable)
@@ -20,7 +20,7 @@ using System.Collections.Generic;
 namespace Tizen.Multimedia
 {
     /// <summary>
-    /// An extended EventArgs class which contains details about all the faces detected.
+    /// Provides data for the <see cref="Camera.FaceDetected"/> event.
     /// If the user needs to keep the faces data, the user has to copy the data.
     /// </summary>
     public class FaceDetectedEventArgs : EventArgs
@@ -31,10 +31,9 @@ namespace Tizen.Multimedia
         }
 
         /// <summary>
-        /// The list containing faces of type <see cref="Tizen.Multimedia.FaceDetectionData"/>.
+        /// Gets the list containing faces of type <see cref="Tizen.Multimedia.FaceDetectionData"/>.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public IEnumerable<FaceDetectionData> Faces { get; }
     }
 }
-
index 61ba45b..cf44765 100755 (executable)
@@ -19,7 +19,7 @@ using System;
 namespace Tizen.Multimedia
 {
     /// <summary>
-    /// An extended EventArgs class which contains details about the HDR capture progress.
+    /// Provides data for the <see cref="Camera.HdrCaptureProgress"/> event.
     /// </summary>
     public class HdrCaptureProgressEventArgs : EventArgs
     {
@@ -29,10 +29,9 @@ namespace Tizen.Multimedia
         }
 
         /// <summary>
-        /// The HDR capture progress in percent.
+        /// Gets the HDR Capture progress in percent.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public int Percent { get; }
     }
 }
-
index e3b506b..d84d07a 100755 (executable)
@@ -19,4 +19,4 @@ namespace Tizen.Multimedia
     public interface IPreviewPlane
     {
     }
-}
\ No newline at end of file
+}
old mode 100644 (file)
new mode 100755 (executable)
index 71c427a..8160f4e
@@ -53,4 +53,3 @@ namespace Tizen.Multimedia
         public double Altitude { get; }
     }
 }
-
index 3ef9684..b60083b 100755 (executable)
@@ -19,7 +19,7 @@ using System;
 namespace Tizen.Multimedia
 {
     /// <summary>
-    /// An extended EventArgs class which contains details about the media packet preview frame.
+    /// Provides data for the <see cref="Camera.MediaPacketPreview"/> event.
     /// </summary>
     public class MediaPacketPreviewEventArgs : EventArgs
     {
@@ -29,10 +29,9 @@ namespace Tizen.Multimedia
         }
 
         /// <summary>
-        /// The media packet data.
+        /// Gets the media packet data.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public MediaPacket Packet { get; }
     }
 }
-
index 28cce51..fbda63c 100755 (executable)
@@ -19,7 +19,7 @@ using System;
 namespace Tizen.Multimedia
 {
     /// <summary>
-    /// An extended EventArgs class which contains details about the preview frame.
+    /// Provides data for the <see cref="Camera.Preview"/> event.
     /// </summary>
     public class PreviewEventArgs : EventArgs
     {
@@ -29,10 +29,9 @@ namespace Tizen.Multimedia
         }
 
         /// <summary>
-        /// The PreviewData frame.
+        /// Gets the preview frame data.
         /// </summary>
         /// <since_tizen> 3 </since_tizen>
         public PreviewFrame Preview { get; }
     }
 }
-
index 04962ef..3777018 100755 (executable)
@@ -114,4 +114,4 @@ namespace Tizen.Multimedia
         /// <since_tizen> 3 </since_tizen>
         public IPreviewPlane Plane { get; }
     }
-}
\ No newline at end of file
+}
index 9671090..d627c5d 100755 (executable)
@@ -36,4 +36,4 @@ namespace Tizen.Multimedia
         /// <since_tizen> 3 </since_tizen>
         public byte[] Data { get; }
     }
-}
\ No newline at end of file
+}
index 132911b..0d50515 100755 (executable)
@@ -52,4 +52,4 @@ namespace Tizen.Multimedia
         /// <since_tizen> 3 </since_tizen>
         public byte[] V { get; }
     }
-}
\ No newline at end of file
+}
index 86be713..cae1329 100755 (executable)
@@ -31,7 +31,7 @@ namespace Tizen.Multimedia
         }
 
         /// <summary>
-        /// Gets the policy that interrupted the recorder.
+        /// Gets the reason that interrupted the recorder.
         /// </summary>
         public RecorderPolicy Reason { get; }