Release 4.0.0-preview1-00301
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / Type.cs
index 64099f1..42184dd 100755 (executable)
@@ -1,32 +1,68 @@
-/** Copyright (c) 2017 Samsung Electronics Co., Ltd.
-*
-* Licensed under the Apache License, Version 2.0 (the "License");
-* you may not use this file except in compliance with the License.
-* You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*
-*/
+/*
+ * Copyright(c) 2017 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
 
 namespace Tizen.NUI
 {
-
+    /// <summary>
+    /// An enum of Device Class types.
+    /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public enum Type
     {
+        /// <summary>
+        /// Not a device.
+        /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         NONE,
+        /// <summary>
+        /// The user/seat (the user themselves).
+        /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         USER,
+        /// <summary>
+        /// A regular keyboard, numberpad or attached buttons.
+        /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         KEYBOARD,
+        /// <summary>
+        /// A mouse, trackball or touchpad relative motion device.
+        /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         MOUSE,
+        /// <summary>
+        /// A touchscreen with fingers or stylus.
+        /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         TOUCH,
+        /// <summary>
+        /// A special pen device.
+        /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         PEN,
+        /// <summary>
+        /// A pointing device based on laser, infrared or similar technology.
+        /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         POINTER,
+        /// <summary>
+        /// A gamepad controller or joystick.
+        /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         GAMEPAD
     }
 
-}
+}
\ No newline at end of file