X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2FElmSharp%2FElmSharp%2FIAccessibleObject.cs;h=92cba84d39de10dcb7ac5aecddb51d943fec64dd;hb=58283d6a09a7f531af61ae7b27b574603ef244df;hp=915bf7ca0a8bc8c8a38eb3cb1aeeeb5ee9d67b3b;hpb=4a9d296866c560d5b83b1e16dd27beba8f7caa59;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git diff --git a/src/ElmSharp/ElmSharp/IAccessibleObject.cs b/src/ElmSharp/ElmSharp/IAccessibleObject.cs old mode 100755 new mode 100644 index 915bf7c..92cba84 --- a/src/ElmSharp/ElmSharp/IAccessibleObject.cs +++ b/src/ElmSharp/ElmSharp/IAccessibleObject.cs @@ -14,30 +14,36 @@ * limitations under the License. */ +using System; + namespace ElmSharp.Accessible { /// /// IAccessibleObject is an interface, which defines the properties and methods of an accessible object. /// /// preview + [Obsolete("This has been deprecated in API12")] public interface IAccessibleObject { /// /// Gets or sets the reading information types of an accessible object. /// /// preview + [Obsolete("This has been deprecated in API12")] ReadingInfoType ReadingInfoType { get; set; } /// /// Gets or sets the role of the object in an accessibility domain. /// /// preview + [Obsolete("This has been deprecated in API12")] AccessRole Role { get; set; } /// /// Gets or sets the highlightable of the given widget. /// /// preview + [Obsolete("This has been deprecated in API12")] bool CanHighlight { get; set; } /// @@ -47,30 +53,35 @@ namespace ElmSharp.Accessible /// It is the application developer's responsibility to ensure that translation files are loaded and binded to the translation domain when accessibility is enabled. /// /// preview + [Obsolete("This has been deprecated in API12")] string TranslationDomain { get; set; } /// /// Gets or sets an accessible name of the object. /// /// preview + [Obsolete("This has been deprecated in API12")] string Name { get; set; } /// /// Gets or sets contextual information about the object. /// /// preview + [Obsolete("This has been deprecated in API12")] string Description { get; set; } /// /// Gets or sets the delegate for . /// /// preview + [Obsolete("This has been deprecated in API12")] AccessibleInfoProvider NameProvider { get; set; } /// /// Gets or sets the delegate for . /// /// preview + [Obsolete("This has been deprecated in API12")] AccessibleInfoProvider DescriptionProvider { get; set; } /// @@ -80,6 +91,7 @@ namespace ElmSharp.Accessible /// /// The relationship between the source object and target object of a given type. /// preview + [Obsolete("This has been deprecated in API12")] void AppendRelation(IAccessibleRelation relation); /// @@ -87,18 +99,21 @@ namespace ElmSharp.Accessible /// /// The relationship between the source object and target object of a given type. /// preview + [Obsolete("This has been deprecated in API12")] void RemoveRelation(IAccessibleRelation relation); /// /// Highlights the accessible widget. /// /// preview + [Obsolete("This has been deprecated in API12")] void Highlight(); /// /// Clears the highlight of the accessible widget. /// /// preview + [Obsolete("This has been deprecated in API12")] void Unhighlight(); } }