]> source.dussan.org Git - vaadin-framework.git/commitdiff
Javadoc update
authorArtur <Artur@Storm>
Tue, 17 Apr 2012 22:06:26 +0000 (01:06 +0300)
committerArtur Signell <artur@vaadin.com>
Wed, 18 Apr 2012 20:09:04 +0000 (23:09 +0300)
src/com/vaadin/terminal/gwt/client/communication/JsonEncoder.java

index 294626e71acbe6e7ad2ec934bdf229fef565bdf7..fdc06b0e213a2626a6681dd604b767f7f7d84480 100644 (file)
@@ -163,6 +163,15 @@ public class JsonEncoder {
         return outerArray;
     }
 
+    /**
+     * Returns the transport type for the given value. Only returns a transport
+     * type for internally handled values.
+     * 
+     * @param value
+     *            The value that should be transported
+     * @return One of the JsonEncode.VTYPE_ constants or null if the value
+     *         cannot be transported using an internally handled type.
+     */
     private static String getTransportType(Object value) {
         if (value == null) {
             return VTYPE_NULL;