From 9b97c3a5ab43d2bc065ccd2cf29544de6f7637f2 Mon Sep 17 00:00:00 2001 From: "SukHyung, Kang" Date: Thu, 6 Jul 2017 11:42:06 +0900 Subject: [PATCH] add since_tizen tag for API reference Change-Id: I17152c206e19278f3fe388056877174bcc541c67 Signed-off-by: SukHyung, Kang --- .../Tizen.Applications/WidgetControl.cs | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/src/Tizen.Applications.WidgetControl/Tizen.Applications/WidgetControl.cs b/src/Tizen.Applications.WidgetControl/Tizen.Applications/WidgetControl.cs index c35e2b9..86e5969 100755 --- a/src/Tizen.Applications.WidgetControl/Tizen.Applications/WidgetControl.cs +++ b/src/Tizen.Applications.WidgetControl/Tizen.Applications/WidgetControl.cs @@ -40,11 +40,13 @@ namespace Tizen.Applications /// /// Widget ID. /// + /// 3 public string Id { get; internal set; } /// /// Gets widget content. /// + /// 3 /// Thrown in case of failed conditions public Bundle GetContent() { @@ -67,6 +69,7 @@ namespace Tizen.Applications /// /// Changes the content for the widget instance. /// + /// 3 /// Content to be changed /// True if you want to update your widget even if the provider is paused otherwise false. /// Thrown when failed because of invalid argument @@ -98,6 +101,7 @@ namespace Tizen.Applications /// /// Changes the update period for the widget instance. /// + /// 3 /// Thrown when failed because of invalid argument /// Thrown in case of failed conditions /// Thrown when app does not have privilege to access this method @@ -135,6 +139,7 @@ namespace Tizen.Applications /// /// Enumeration for types of widget size /// + /// 3 public enum SizeType : int { /// @@ -207,21 +212,25 @@ namespace Tizen.Applications /// /// Widget width. /// + /// 3 public int Width { get; internal set; } /// /// Widget height. /// + /// 3 public int Height { get; internal set; } /// /// The path for widget preview image file. /// + /// 3 public string PreviewImagePath { get; internal set; } /// /// The size type of the widget. /// + /// 3 public SizeType Type { get; internal set; } } @@ -237,6 +246,7 @@ namespace Tizen.Applications /// Factory method for WidgetControl. /// It will create all objects of WidgetControl base on package ID. /// + /// 3 /// Parkage ID /// http://tizen.org/privilege/widget.viewer /// Thrown when failed because of invalid argument @@ -269,6 +279,7 @@ namespace Tizen.Applications /// /// Gets all widget IDs by package ID. /// + /// 3 /// http://tizen.org/privilege/widget.viewer /// Thrown when failed because of invalid argument /// Thrown in case of failed conditions @@ -300,11 +311,13 @@ namespace Tizen.Applications /// /// Widget ID. /// + /// 3 public string Id { get; internal set; } /// /// The flag value for "nodisplay" /// + /// 3 /// http://tizen.org/privilege/widget.viewer public bool IsNoDisplay { @@ -320,6 +333,7 @@ namespace Tizen.Applications /// /// Event handler for created widget instance. /// + /// 3 /// Thrown in case of failed conditions /// Thrown when app does not have privilege to access this method public event EventHandler Created @@ -339,6 +353,7 @@ namespace Tizen.Applications /// /// Event handler for resumed widget instance. /// + /// 3 /// Thrown in case of failed conditions /// Thrown when app does not have privilege to access this method public event EventHandler Resumed @@ -358,6 +373,7 @@ namespace Tizen.Applications /// /// Event handler for paused widget instance. /// + /// 3 /// Thrown in case of failed conditions /// Thrown when app does not have privilege to access this method public event EventHandler Paused @@ -377,6 +393,7 @@ namespace Tizen.Applications /// /// Event handler for destroyed widget instance. /// + /// 3 /// Thrown in case of failed conditions /// Thrown when app does not have privilege to access this method public event EventHandler Destroyed @@ -396,6 +413,7 @@ namespace Tizen.Applications /// /// A constructor of WidgetControl object /// + /// 3 /// widget id. public WidgetControl(string widgetId) { @@ -413,6 +431,7 @@ namespace Tizen.Applications /// /// Gets objects for widget instance information. /// + /// 3 /// Thrown in case of failed conditions /// Thrown when API is not supported in this device /// Thrown when app does not have privilege to access this method @@ -442,6 +461,7 @@ namespace Tizen.Applications /// /// Gets objects for widget scale information. /// + /// 3 /// http://tizen.org/privilege/widget.viewer /// Thrown in case of failed conditions /// Thrown when app does not have privilege to access this method @@ -503,6 +523,7 @@ namespace Tizen.Applications /// /// Gets widget name. /// + /// 3 /// Language /// http://tizen.org/privilege/widget.viewer /// Thrown when argument is null @@ -517,6 +538,7 @@ namespace Tizen.Applications /// /// Gets widget icon path. /// + /// 3 /// Language /// http://tizen.org/privilege/widget.viewer /// Thrown when argument is null @@ -533,6 +555,7 @@ namespace Tizen.Applications /// /// Releases all resources used by the WidgetControl class. /// + /// 3 public void Dispose() { Dispose(true); -- 2.7.4