Fix TCT issues 32/120532/1
authorminho.sun <minho.sun@samsung.com>
Thu, 23 Mar 2017 07:16:58 +0000 (16:16 +0900)
committerminho.sun <minho.sun@samsung.com>
Thu, 23 Mar 2017 07:16:58 +0000 (16:16 +0900)
Fix TCT issues for CustomView and TextLabel.

CustomView:
EmitKeyEventSignal & KeyboardEnter are internal api in native side.
So change these apis to internal.

TextLabel:
The type of Emboss & Outline is actually string.
So change type to string.

Change-Id: I7c67e54c1ec0995c8da5f386d163035f388d29d2
Signed-off-by: minho.sun <minho.sun@samsung.com>
Tizen.NUI/src/public/CustomView.cs
Tizen.NUI/src/public/TextLabel.cs

index 1968288..5e6c5ce 100755 (executable)
@@ -193,7 +193,7 @@ namespace Tizen.NUI
         /// <summary>
         /// Called by the KeyboardFocusManager.
         /// </summary>
-        public void KeyboardEnter()
+        internal void KeyboardEnter()
         {
             viewWrapperImpl.KeyboardEnter();
         }
@@ -203,7 +203,7 @@ namespace Tizen.NUI
         /// </summary>
         /// <param name="key">The key event</param>
         /// <returns>True if the event was consumed</returns>
-        public bool EmitKeyEventSignal(Key key)
+        internal bool EmitKeyEventSignal(Key key)
         {
             return viewWrapperImpl.EmitKeyEventSignal(key);
         }
index fc58862..13b94ed 100755 (executable)
@@ -595,12 +595,12 @@ namespace Tizen.NUI
         /// Emboss property
         /// The default emboss parameters.
         /// </summary>
-        public PropertyMap Emboss
+        public string Emboss
         {
             get
             {
-                PropertyMap temp = new PropertyMap();
-                GetProperty(TextLabel.Property.EMBOSS).Get(temp);
+                string temp;
+                GetProperty(TextLabel.Property.EMBOSS).Get( out temp);
                 return temp;
             }
             set
@@ -613,12 +613,12 @@ namespace Tizen.NUI
         /// Outline property
         /// The default outline parameters.
         /// </summary>
-        public PropertyMap Outline
+        public string Outline
         {
             get
             {
-                PropertyMap temp = new PropertyMap();
-                GetProperty(TextLabel.Property.OUTLINE).Get(temp);
+                string temp;
+                GetProperty(TextLabel.Property.OUTLINE).Get(out temp);
                 return temp;
             }
             set