SDL_Android/SmartDeviceLinkAndroidProxy - added the correct version of the proxy
[profile/ivi/smartdevicelink.git] / SDL_Android / SmartDeviceLinkProxyAndroid / src / com / smartdevicelink / proxy / rpc / enums / TextAlignment.java
index 6ed7208..9c301f7 100755 (executable)
@@ -1,14 +1,29 @@
-//
-// Copyright (c) 2013 Ford Motor Company
-//
-package com.smartdevicelink.proxy.rpc.enums;
-
-public enum TextAlignment {
-    LEFT_ALIGNED,
-    RIGHT_ALIGNED,
-    CENTERED;
-
-    public static TextAlignment valueForString(String value) {
-        return valueOf(value);
-    }
-}
+package com.smartdevicelink.proxy.rpc.enums;\r
+\r
+/**\r
+ * The list of possible alignments of text in a field.\r
+ * @since SmartDeviceLink 1.0\r
+ */\r
+public enum TextAlignment {\r
+       /**\r
+        * Text aligned left.\r
+        */\r
+    LEFT_ALIGNED,\r
+    /**\r
+     * Text aligned right.\r
+     */\r
+    RIGHT_ALIGNED,\r
+    /**\r
+     * Text aligned centered.\r
+     */\r
+    CENTERED;\r
+\r
+    /**\r
+     * Convert String to TextAlignment\r
+     * @param value String\r
+     * @return TextAlignment\r
+     */\r
+    public static TextAlignment valueForString(String value) {\r
+        return valueOf(value);\r
+    }\r
+}\r