summaryrefslogtreecommitdiffstats
path: root/server/src/com/vaadin/terminal/AbstractJavaScriptExtension.java
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-08-14 15:06:05 +0300
committerArtur Signell <artur@vaadin.com>2012-08-14 15:07:17 +0300
commiteb51296d21be72954a0fea624519bcc66bb29f87 (patch)
treef808dea32efac8b39e9955cf89ca7e2171ea0c56 /server/src/com/vaadin/terminal/AbstractJavaScriptExtension.java
parentd311548afbd09abb7219469266dd6b3b93f9980f (diff)
downloadvaadin-framework-eb51296d21be72954a0fea624519bcc66bb29f87.tar.gz
vaadin-framework-eb51296d21be72954a0fea624519bcc66bb29f87.zip
Removed depdencies from server to client (#9279)
Diffstat (limited to 'server/src/com/vaadin/terminal/AbstractJavaScriptExtension.java')
-rw-r--r--server/src/com/vaadin/terminal/AbstractJavaScriptExtension.java9
1 files changed, 4 insertions, 5 deletions
diff --git a/server/src/com/vaadin/terminal/AbstractJavaScriptExtension.java b/server/src/com/vaadin/terminal/AbstractJavaScriptExtension.java
index 7bafb6d2b3..69c70435f0 100644
--- a/server/src/com/vaadin/terminal/AbstractJavaScriptExtension.java
+++ b/server/src/com/vaadin/terminal/AbstractJavaScriptExtension.java
@@ -5,7 +5,6 @@
package com.vaadin.terminal;
import com.vaadin.shared.JavaScriptExtensionState;
-import com.vaadin.terminal.gwt.client.ApplicationConnection;
import com.vaadin.ui.JavaScriptFunction;
/**
@@ -66,7 +65,8 @@ import com.vaadin.ui.JavaScriptFunction;
* functions is described bellow.</li>
* <li><code>translateVaadinUri(uri)</code> - Translates a Vaadin URI to a URL
* that can be used in the browser. This is just way of accessing
- * {@link ApplicationConnection#translateVaadinUri(String)}</li>
+ * {@link com.vaadin.terminal.gwt.client.ApplicationConnection#translateVaadinUri(String)}
+ * </li>
* </ul>
* The connector wrapper also supports these special functions:
* <ul>
@@ -77,9 +77,8 @@ import com.vaadin.ui.JavaScriptFunction;
* {@link #addFunction(String, JavaScriptFunction)} on the server will
* automatically be present as a function that triggers the registered function
* on the server.</li>
- * <li>Any field name referred to using
- * {@link #callFunction(String, Object...)} on the server will be called if a
- * function has been assigned to the field.</li>
+ * <li>Any field name referred to using {@link #callFunction(String, Object...)}
+ * on the server will be called if a function has been assigned to the field.</li>
* </ul>
* <p>
*