Separate C# classes into Internal and Public
[platform/core/uifw/dali-toolkit.git] / plugins / dali-sharp / sharp / public / Animation.cs
@@ -528,20 +528,6 @@ namespace Dali
 
         }
 
-        public static Animation DownCast(BaseHandle handle)
-        {
-            Animation ret = new Animation(NDalicPINVOKE.Animation_DownCast(BaseHandle.getCPtr(handle)), true);
-            if (NDalicPINVOKE.SWIGPendingException.Pending)
-                throw NDalicPINVOKE.SWIGPendingException.Retrieve();
-            return ret;
-        }
-
-        public Animation(Animation handle) : this(NDalicPINVOKE.new_Animation__SWIG_1(Animation.getCPtr(handle)), true)
-        {
-            if (NDalicPINVOKE.SWIGPendingException.Pending)
-                throw NDalicPINVOKE.SWIGPendingException.Retrieve();
-        }
-
         public Animation Assign(Animation rhs)
         {
             Animation ret = new Animation(NDalicPINVOKE.Animation_Assign(swigCPtr, Animation.getCPtr(rhs)), false);
@@ -550,14 +536,14 @@ namespace Dali
             return ret;
         }
 
-        public void SetDuration(float seconds)
+        internal void SetDuration(float seconds)
         {
             NDalicPINVOKE.Animation_SetDuration(swigCPtr, seconds);
             if (NDalicPINVOKE.SWIGPendingException.Pending)
                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
         }
 
-        public float GetDuration()
+        internal float GetDuration()
         {
             float ret = NDalicPINVOKE.Animation_GetDuration(swigCPtr);
             if (NDalicPINVOKE.SWIGPendingException.Pending)
@@ -565,21 +551,21 @@ namespace Dali
             return ret;
         }
 
-        public void SetLooping(bool looping)
+        internal void SetLooping(bool looping)
         {
             NDalicPINVOKE.Animation_SetLooping(swigCPtr, looping);
             if (NDalicPINVOKE.SWIGPendingException.Pending)
                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
         }
 
-        public void SetLoopCount(int count)
+        internal void SetLoopCount(int count)
         {
             NDalicPINVOKE.Animation_SetLoopCount(swigCPtr, count);
             if (NDalicPINVOKE.SWIGPendingException.Pending)
                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
         }
 
-        public int GetLoopCount()
+        internal int GetLoopCount()
         {
             int ret = NDalicPINVOKE.Animation_GetLoopCount(swigCPtr);
             if (NDalicPINVOKE.SWIGPendingException.Pending)
@@ -595,7 +581,7 @@ namespace Dali
             return ret;
         }
 
-        public bool IsLooping()
+        internal bool IsLooping()
         {
             bool ret = NDalicPINVOKE.Animation_IsLooping(swigCPtr);
             if (NDalicPINVOKE.SWIGPendingException.Pending)
@@ -603,14 +589,14 @@ namespace Dali
             return ret;
         }
 
-        public void SetEndAction(Animation.EndActions action)
+        internal void SetEndAction(Animation.EndActions action)
         {
             NDalicPINVOKE.Animation_SetEndAction(swigCPtr, (int)action);
             if (NDalicPINVOKE.SWIGPendingException.Pending)
                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
         }
 
-        public Animation.EndActions GetEndAction()
+        internal Animation.EndActions GetEndAction()
         {
             Animation.EndActions ret = (Animation.EndActions)NDalicPINVOKE.Animation_GetEndAction(swigCPtr);
             if (NDalicPINVOKE.SWIGPendingException.Pending)
@@ -633,14 +619,14 @@ namespace Dali
             return ret;
         }
 
-        public void SetDefaultAlphaFunction(AlphaFunction alpha)
+        internal void SetDefaultAlphaFunction(AlphaFunction alpha)
         {
             NDalicPINVOKE.Animation_SetDefaultAlphaFunction(swigCPtr, AlphaFunction.getCPtr(alpha));
             if (NDalicPINVOKE.SWIGPendingException.Pending)
                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
         }
 
-        public AlphaFunction GetDefaultAlphaFunction()
+        internal AlphaFunction GetDefaultAlphaFunction()
         {
             AlphaFunction ret = new AlphaFunction(NDalicPINVOKE.Animation_GetDefaultAlphaFunction(swigCPtr), true);
             if (NDalicPINVOKE.SWIGPendingException.Pending)
@@ -714,7 +700,7 @@ namespace Dali
                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
         }
 
-        public Animation.State GetState()
+        private Animation.State GetState()
         {
             Animation.State ret = (Animation.State)NDalicPINVOKE.Animation_GetState(swigCPtr);
             if (NDalicPINVOKE.SWIGPendingException.Pending)
@@ -736,7 +722,7 @@ namespace Dali
                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
         }
 
-        public AnimationSignal FinishedSignal()
+        internal AnimationSignal FinishedSignal()
         {
             AnimationSignal ret = new AnimationSignal(NDalicPINVOKE.Animation_FinishedSignal(swigCPtr), false);
             if (NDalicPINVOKE.SWIGPendingException.Pending)
@@ -884,20 +870,6 @@ namespace Dali
                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
         }
 
-        public void Show(View view, float delaySeconds)
-        {
-            NDalicPINVOKE.Animation_Show(swigCPtr, View.getCPtr(view), delaySeconds);
-            if (NDalicPINVOKE.SWIGPendingException.Pending)
-                throw NDalicPINVOKE.SWIGPendingException.Retrieve();
-        }
-
-        public void Hide(View view, float delaySeconds)
-        {
-            NDalicPINVOKE.Animation_Hide(swigCPtr, View.getCPtr(view), delaySeconds);
-            if (NDalicPINVOKE.SWIGPendingException.Pending)
-                throw NDalicPINVOKE.SWIGPendingException.Retrieve();
-        }
-
         public enum EndActions
         {
             Cancel,