From 6ebd899ed4b089dd11cad76b43ff8131463239a2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Leif=20=C3=85strand?= Date: Tue, 11 Sep 2012 13:57:01 +0300 Subject: [PATCH] Update javadoc --- .../client/communication/JSONSerializer.java | 28 +++++++++++-------- 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/client/src/com/vaadin/client/communication/JSONSerializer.java b/client/src/com/vaadin/client/communication/JSONSerializer.java index dd3594acac..c57058ee9c 100644 --- a/client/src/com/vaadin/client/communication/JSONSerializer.java +++ b/client/src/com/vaadin/client/communication/JSONSerializer.java @@ -16,22 +16,21 @@ package com.vaadin.client.communication; -import com.google.gwt.json.client.JSONObject; import com.google.gwt.json.client.JSONValue; import com.vaadin.client.ApplicationConnection; -import com.vaadin.client.ConnectorMap; import com.vaadin.client.metadata.Type; /** * Implementors of this interface knows how to serialize an Object of a given * type to JSON and how to deserialize the JSON back into an object. * - * The {@link #serialize(Object, ConnectorMap)} and - * {@link #deserialize(JSONObject, ConnectorMap)} methods must be symmetric so - * they can be chained and produce the original result (or an equal result). + * The {@link #serialize(Object, ApplicationConnection)} and + * {@link #deserialize(Type, JSONValue, ApplicationConnection)} methods must be + * symmetric so they can be chained and produce the original result (or an equal + * result). * * Each {@link JSONSerializer} implementation can handle an object of a single - * type - see {@link SerializerMap}. + * type - see {@link Type#findSerializer()}. * * @since 7.0 */ @@ -39,12 +38,16 @@ public interface JSONSerializer { /** * Creates and deserializes an object received from the server. Must be - * compatible with {@link #serialize(Object, ConnectorMap)} and also with - * the server side JsonCodec.encode(Object, - * com.vaadin.server.PaintableIdMapper) . + * compatible with {@link #serialize(Object, ApplicationConnection)} and + * also with the server side JsonCodec.encode method. * + * @param type + * the type to deserialize * @param jsonValue * JSON map from property name to property value + * @param connection + * the application connection providing the context + * * @return A deserialized object */ T deserialize(Type type, JSONValue jsonValue, @@ -52,12 +55,13 @@ public interface JSONSerializer { /** * Serialize the given object into JSON. Must be compatible with - * {@link #deserialize(JSONObject, ConnectorMap)} and also with the server - * side JsonCodec.decode(com.vaadin.external.json.JSONArray, - * com.vaadin.server.PaintableIdMapper) + * {@link #deserialize(Type, JSONValue, ApplicationConnection)} and also + * with the server side JsonCodec.decodeCustomType method. * * @param value * The object to serialize + * @param connection + * the application connection providing the context * @return A JSON serialized version of the object */ JSONValue serialize(T value, ApplicationConnection connection); -- 2.39.5