aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/com
diff options
context:
space:
mode:
authorJohannes Dahlström <johannesd@vaadin.com>2012-08-27 12:54:59 +0300
committerJohannes Dahlström <johannesd@vaadin.com>2012-08-27 12:54:59 +0300
commit2af52b6102051fd9289778c35a1a74c58d51bf02 (patch)
tree5a8ccf60bbd1f96513a6cbc2a62862814ce5f31e /server/src/com
parenta67ca492c18451c0f286e90b3a5fb34bde2d3c47 (diff)
downloadvaadin-framework-2af52b6102051fd9289778c35a1a74c58d51bf02.tar.gz
vaadin-framework-2af52b6102051fd9289778c35a1a74c58d51bf02.zip
Use fully-qualified class name in javadoc to remove client dependency
Diffstat (limited to 'server/src/com')
-rw-r--r--server/src/com/vaadin/terminal/gwt/server/AbstractCommunicationManager.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/server/src/com/vaadin/terminal/gwt/server/AbstractCommunicationManager.java b/server/src/com/vaadin/terminal/gwt/server/AbstractCommunicationManager.java
index a0ecd01b89..94fd086b0b 100644
--- a/server/src/com/vaadin/terminal/gwt/server/AbstractCommunicationManager.java
+++ b/server/src/com/vaadin/terminal/gwt/server/AbstractCommunicationManager.java
@@ -90,7 +90,6 @@ import com.vaadin.terminal.Vaadin6Component;
import com.vaadin.terminal.VariableOwner;
import com.vaadin.terminal.WrappedRequest;
import com.vaadin.terminal.WrappedResponse;
-import com.vaadin.terminal.gwt.client.ApplicationConnection;
import com.vaadin.terminal.gwt.server.BootstrapHandler.BootstrapContext;
import com.vaadin.terminal.gwt.server.ComponentSizeValidator.InvalidLayout;
import com.vaadin.terminal.gwt.server.RpcManager.RpcInvocationException;
@@ -106,8 +105,8 @@ import com.vaadin.ui.Window;
* This is a common base class for the server-side implementations of the
* communication system between the client code (compiled with GWT into
* JavaScript) and the server side components. Its client side counterpart is
- * {@link ApplicationConnection}.
- *
+ * {@link com.vaadin.terminal.gwt.client.ApplicationConnection}.
+ * <p>
* TODO Document better!
*/
@SuppressWarnings("serial")