Change window enum names 95/130595/1
authorHeeyong Song <heeyong.song@samsung.com>
Tue, 23 May 2017 05:04:20 +0000 (14:04 +0900)
committerHeeyong Song <heeyong.song@samsung.com>
Tue, 23 May 2017 05:04:20 +0000 (14:04 +0900)
Change-Id: I83f59f3ab6e4e55667465ad6fab612a10ee6a6bd

Tizen.NUI/src/public/NUIConstants.cs
Tizen.NUI/src/public/Window.cs

index a09b96d..def703e 100755 (executable)
@@ -1248,7 +1248,7 @@ namespace Tizen.NUI
     /// <summary>
     /// An enum of screen mode.
     /// </summary>
-    public enum ScreenModeType {
+    public enum ScreenMode {
         /// <summary>
         /// The mode which turns the screen off after a timeout.
         /// </summary>
@@ -1262,7 +1262,7 @@ namespace Tizen.NUI
     /// <summary>
     /// An enum of notification window's priority level.
     /// </summary>
-    public enum NotificationLevelType {
+    public enum NotificationLevel {
         /// <summary>
         /// No notification level.<br>
         /// Default level.<br>
@@ -1310,4 +1310,4 @@ namespace Tizen.NUI
         /// </summary>
         Dialog
     }
-}
\ No newline at end of file
+}
index 8815c05..729bf50 100755 (executable)
@@ -250,7 +250,7 @@ namespace Tizen.NUI
         /// </summary>
         /// <param name="level">The notification window level.</param>
         /// <returns>True if no error occurred, false otherwise.</returns>
-        public bool SetNotificationLevel(NotificationLevelType level) {
+        public bool SetNotificationLevel(NotificationLevel level) {
             bool ret = NDalicPINVOKE.SetNotificationLevel(swigCPtr, (int)level);
             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
             return ret;
@@ -260,8 +260,8 @@ namespace Tizen.NUI
         /// Gets a priority level for the specified notification window.
         /// </summary>
         /// <returns>The notification window level.</returns>
-        public NotificationLevelType GetNotificationLevel() {
-            NotificationLevelType ret = (NotificationLevelType)NDalicPINVOKE.GetNotificationLevel(swigCPtr);
+        public NotificationLevel GetNotificationLevel() {
+            NotificationLevel ret = (NotificationLevel)NDalicPINVOKE.GetNotificationLevel(swigCPtr);
             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
             return ret;
         }
@@ -290,7 +290,7 @@ namespace Tizen.NUI
         /// </summary>
         /// <param name="screenMode">The screen mode.</param>
         /// <returns>True if no error occurred, false otherwise.</returns>
-        public bool SetScreenMode(ScreenModeType screenMode) {
+        public bool SetScreenMode(ScreenMode screenMode) {
             bool ret = NDalicPINVOKE.SetScreenMode(swigCPtr, (int)screenMode);
             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
             return ret;
@@ -300,8 +300,8 @@ namespace Tizen.NUI
         /// Gets a screen mode of the window.
         /// </summary>
         /// <returns>The screen mode.</returns>
-        public ScreenModeType GetScreenMode() {
-            ScreenModeType ret = (ScreenModeType)NDalicPINVOKE.GetScreenMode(swigCPtr);
+        public ScreenMode GetScreenMode() {
+            ScreenMode ret = (ScreenMode)NDalicPINVOKE.GetScreenMode(swigCPtr);
             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
             return ret;
         }