SDL_Android/SmartDeviceLinkAndroidProxy - added the correct version of the proxy
[profile/ivi/smartdevicelink.git] / SDL_Android / SmartDeviceLinkProxyAndroid / src / com / smartdevicelink / proxy / rpc / enums / DriverDistractionState.java
index 112881e..ef7db42 100755 (executable)
@@ -1,13 +1,28 @@
-//
-// Copyright (c) 2013 Ford Motor Company
-//
-package com.smartdevicelink.proxy.rpc.enums;
-
-public enum DriverDistractionState {
-       DD_ON,
-       DD_OFF;
-       
-       public static DriverDistractionState valueForString(String value) {
-       return valueOf(value);
-    }
-}
+/**\r
+ * \r
+ */\r
+package com.smartdevicelink.proxy.rpc.enums;\r
+\r
+/**\r
+ * Enumeration that describes possible states of driver distraction.\r
+ * @since SmartDeviceLink 1.0\r
+ */\r
+public enum DriverDistractionState {\r
+       /**\r
+        * Driver distraction rules are in effect.\r
+        */\r
+       DD_ON,\r
+       /**\r
+        * Driver distraction rules are NOT in effect.\r
+        */\r
+       DD_OFF;\r
+       \r
+       /**\r
+        * Convert String to DriverDistractionState\r
+        * @param value String\r
+        * @return DriverDistractionState\r
+        */\r
+       public static DriverDistractionState valueForString(String value) {\r
+       return valueOf(value);\r
+    }\r
+}\r