SDL_Android/SmartDeviceLinkAndroidProxy - added the correct version of the proxy
[profile/ivi/smartdevicelink.git] / SDL_Android / SmartDeviceLinkProxyAndroid / src / com / smartdevicelink / proxy / rpc / ShowResponse.java
index b97db00..e6f8feb 100755 (executable)
@@ -1,18 +1,32 @@
-//
-// Copyright (c) 2013 Ford Motor Company
-//
-package com.smartdevicelink.proxy.rpc;
-
-import java.util.Hashtable;
-
-import com.smartdevicelink.proxy.RPCResponse;
-
-public class ShowResponse extends RPCResponse {
-
-    public ShowResponse() {
-        super("Show");
-    }
-    public ShowResponse(Hashtable hash) {
-        super(hash);
-    }
-}
+package com.smartdevicelink.proxy.rpc;\r
+\r
+import java.util.Hashtable;\r
+\r
+import com.smartdevicelink.proxy.RPCResponse;\r
+\r
+/**\r
+ * Show Response is sent, when Show has been called\r
+ * \r
+ * @since SmartDeviceLink 1.0\r
+ */\r
+public class ShowResponse extends RPCResponse {\r
+\r
+       /**\r
+        * Constructs a new ShowResponse object\r
+        */\r
+    public ShowResponse() {\r
+        super("Show");\r
+    }\r
+\r
+       /**\r
+        * Constructs a new ShowResponse object indicated by the Hashtable\r
+        * parameter\r
+        * <p>\r
+        * \r
+        * @param hash\r
+        *            The Hashtable to use\r
+        */\r
+    public ShowResponse(Hashtable hash) {\r
+        super(hash);\r
+    }\r
+}
\ No newline at end of file