Separate C# classes into Internal and Public
[platform/core/uifw/dali-toolkit.git] / plugins / dali-sharp / sharp / public / TouchPoint.cs
@@ -46,15 +46,15 @@ public class TouchPoint : global::System.IDisposable {
   }
 
 
-  public TouchPoint(int id, TouchPoint.State state, float screenX, float screenY) : this(NDalicPINVOKE.new_TouchPoint__SWIG_0(id, (int)state, screenX, screenY), true) {
+  public TouchPoint(int id, TouchPoint.StateType state, float screenX, float screenY) : this(NDalicPINVOKE.new_TouchPoint__SWIG_0(id, (int)state, screenX, screenY), true) {
     if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
   }
 
-  public TouchPoint(int id, TouchPoint.State state, float screenX, float screenY, float localX, float localY) : this(NDalicPINVOKE.new_TouchPoint__SWIG_1(id, (int)state, screenX, screenY, localX, localY), true) {
+  public TouchPoint(int id, TouchPoint.StateType state, float screenX, float screenY, float localX, float localY) : this(NDalicPINVOKE.new_TouchPoint__SWIG_1(id, (int)state, screenX, screenY, localX, localY), true) {
     if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
   }
 
-  public int deviceId {
+  public int DeviceId {
     set {
       NDalicPINVOKE.TouchPoint_deviceId_set(swigCPtr, value);
       if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
@@ -66,19 +66,19 @@ public class TouchPoint : global::System.IDisposable {
     } 
   }
 
-  public TouchPoint.State state {
+  public TouchPoint.StateType State {
     set {
       NDalicPINVOKE.TouchPoint_state_set(swigCPtr, (int)value);
       if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
     } 
     get {
-      TouchPoint.State ret = (TouchPoint.State)NDalicPINVOKE.TouchPoint_state_get(swigCPtr);
+      TouchPoint.StateType ret = (TouchPoint.StateType)NDalicPINVOKE.TouchPoint_state_get(swigCPtr);
       if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
       return ret;
     } 
   }
 
-  public View hitView {
+  public View HitView {
     set {
       NDalicPINVOKE.TouchPoint_hitActor_set(swigCPtr, View.getCPtr(value));
       if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
@@ -91,7 +91,7 @@ public class TouchPoint : global::System.IDisposable {
     } 
   }
 
-  public Vector2 local {
+  public Vector2 Local {
     set {
       NDalicPINVOKE.TouchPoint_local_set(swigCPtr, Vector2.getCPtr(value));
       if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
@@ -104,7 +104,7 @@ public class TouchPoint : global::System.IDisposable {
     } 
   }
 
-  public Vector2 screen {
+  public Vector2 Screen {
     set {
       NDalicPINVOKE.TouchPoint_screen_set(swigCPtr, Vector2.getCPtr(value));
       if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
@@ -117,7 +117,7 @@ public class TouchPoint : global::System.IDisposable {
     } 
   }
 
-  public enum State {
+  public enum StateType {
     Started,
     Finished,
     Down = Started,