]> source.dussan.org Git - vaadin-framework.git/commitdiff
Removed dependencies from client to server/client-compiler (#9299)
authorArtur Signell <artur@vaadin.com>
Tue, 14 Aug 2012 13:40:14 +0000 (16:40 +0300)
committerArtur Signell <artur@vaadin.com>
Tue, 14 Aug 2012 13:42:27 +0000 (16:42 +0300)
client/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java
client/src/com/vaadin/terminal/gwt/client/WidgetMap.java
client/src/com/vaadin/terminal/gwt/client/communication/JSONSerializer.java
client/src/com/vaadin/terminal/gwt/client/communication/SerializerMap.java
client/src/com/vaadin/terminal/gwt/client/ui/dd/VAcceptCriterionFactory.java

index b7df9d51560f68402c632450ec4000bf54911703..906e1292a056e298d8d907f3d6c045f5b990618e 100644 (file)
@@ -62,12 +62,11 @@ import com.vaadin.terminal.gwt.client.ui.notification.VNotification;
 import com.vaadin.terminal.gwt.client.ui.notification.VNotification.HideEvent;
 import com.vaadin.terminal.gwt.client.ui.root.RootConnector;
 import com.vaadin.terminal.gwt.client.ui.window.WindowConnector;
-import com.vaadin.terminal.gwt.server.AbstractCommunicationManager;
 
 /**
  * This is the client side communication "engine", managing client-server
  * communication with its server side counterpart
- * {@link AbstractCommunicationManager}.
+ * com.vaadin.terminal.gwt.server.AbstractCommunicationManager.
  * 
  * Client-side connectors receive updates from the corresponding server-side
  * connector (typically component) as state updates or RPC calls. The connector
index b77041445788f1bc1f0be3684462a2954877b850..5118648b5193161eb80780bb2dba942582db11fa 100644 (file)
@@ -5,15 +5,12 @@ package com.vaadin.terminal.gwt.client;
 
 import java.util.HashMap;
 
-import com.vaadin.terminal.gwt.widgetsetutils.WidgetMapGenerator;
-
 /**
  * Abstract class mapping between {@link ComponentConnector} instances and their
  * instances.
  * 
- * A concrete implementation of this class is generated by
- * {@link WidgetMapGenerator} or one of its subclasses during widgetset
- * compilation.
+ * A concrete implementation of this class is generated by WidgetMapGenerator or
+ * one of its subclasses during widgetset compilation.
  */
 abstract class WidgetMap {
 
index 9820b6a895e12a10698d8ceb4e7296bc5b9b80d6..d6a68ecc352ea108075ed0b353b4620a11e469fa 100644 (file)
@@ -8,7 +8,6 @@ import com.google.gwt.json.client.JSONObject;
 import com.google.gwt.json.client.JSONValue;
 import com.vaadin.terminal.gwt.client.ApplicationConnection;
 import com.vaadin.terminal.gwt.client.ConnectorMap;
-import com.vaadin.terminal.gwt.server.JsonCodec;
 
 /**
  * Implementors of this interface knows how to serialize an Object of a given
@@ -28,9 +27,8 @@ public interface JSONSerializer<T> {
     /**
      * Creates and deserializes an object received from the server. Must be
      * compatible with {@link #serialize(Object, ConnectorMap)} and also with
-     * the server side
-     * {@link JsonCodec#encode(Object, com.vaadin.terminal.gwt.server.PaintableIdMapper)}
-     * .
+     * the server side JsonCodec.encode(Object,
+     * com.vaadin.terminal.gwt.server.PaintableIdMapper) .
      * 
      * @param jsonValue
      *            JSON map from property name to property value
@@ -42,8 +40,8 @@ public interface JSONSerializer<T> {
     /**
      * Serialize the given object into JSON. Must be compatible with
      * {@link #deserialize(JSONObject, ConnectorMap)} and also with the server
-     * side
-     * {@link JsonCodec#decode(com.vaadin.external.json.JSONArray, com.vaadin.terminal.gwt.server.PaintableIdMapper)}
+     * side JsonCodec.decode(com.vaadin.external.json.JSONArray,
+     * com.vaadin.terminal.gwt.server.PaintableIdMapper)
      * 
      * @param value
      *            The object to serialize
index 0750474d24ff56193a647f21d9641b49dfa6d673..47194a3ea40eaab7b1717d48b92332e3030f6a8f 100644 (file)
@@ -4,14 +4,12 @@
 
 package com.vaadin.terminal.gwt.client.communication;
 
-import com.vaadin.terminal.gwt.widgetsetutils.SerializerMapGenerator;
-
 /**
  * Provide a mapping from a type (communicated between the server and the
  * client) and a {@link JSONSerializer} instance.
  * 
  * An implementation of this class is created at GWT compilation time by
- * {@link SerializerMapGenerator}, so this interface can be instantiated with
+ * SerializerMapGenerator, so this interface can be instantiated with
  * GWT.create().
  * 
  * @since 7.0
index fe627665c50fee69f9e89bdd933dfdf6b880c8d5..7fbe3a6a94759e6efbdc63c94f9d7dd95b307a37 100644 (file)
@@ -3,11 +3,9 @@
  */
 package com.vaadin.terminal.gwt.client.ui.dd;
 
-import com.vaadin.terminal.gwt.widgetsetutils.AcceptCriteriaFactoryGenerator;
-
 /**
- * Generated by {@link AcceptCriteriaFactoryGenerator}
- * 
+ * Generated by
+ * {@link com.vaadin.terminal.gwt.widgetsetutils.AcceptCriteriaFactoryGenerator}
  */
 public abstract class VAcceptCriterionFactory {