diff options
author | Artur Signell <artur@vaadin.com> | 2012-08-29 12:22:31 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-08-29 12:22:31 +0300 |
commit | 63595217a224b9fbc6de4b8bdc2e6b317e0558d5 (patch) | |
tree | 9d7bcafc23ef5f4c6aad8bca6555fc04396aa1c6 /shared | |
parent | e18177bac62e8367829dfc5ec3083a09973e621e (diff) | |
download | vaadin-framework-63595217a224b9fbc6de4b8bdc2e6b317e0558d5.tar.gz vaadin-framework-63595217a224b9fbc6de4b8bdc2e6b317e0558d5.zip |
Merged com.vaadin.terminal.gwt.server into com.vaadin.server (#9431)
Diffstat (limited to 'shared')
-rw-r--r-- | shared/src/com/vaadin/shared/Connector.java | 2 | ||||
-rw-r--r-- | shared/src/com/vaadin/shared/VBrowserDetails.java | 2 | ||||
-rw-r--r-- | shared/src/com/vaadin/shared/ui/Connect.java | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/shared/src/com/vaadin/shared/Connector.java b/shared/src/com/vaadin/shared/Connector.java index 8248d9b576..87fc05f5d0 100644 --- a/shared/src/com/vaadin/shared/Connector.java +++ b/shared/src/com/vaadin/shared/Connector.java @@ -31,7 +31,7 @@ import java.io.Serializable; * wanting to communicate with server side should implement * {@link com.vaadin.client.ServerConnector} and server side * classes should implement - * {@link com.vaadin.terminal.gwt.server.ClientConnector}. + * {@link com.vaadin.server.ClientConnector}. * </p> * * @author Vaadin Ltd diff --git a/shared/src/com/vaadin/shared/VBrowserDetails.java b/shared/src/com/vaadin/shared/VBrowserDetails.java index ccee376eb9..5009857530 100644 --- a/shared/src/com/vaadin/shared/VBrowserDetails.java +++ b/shared/src/com/vaadin/shared/VBrowserDetails.java @@ -21,7 +21,7 @@ import java.io.Serializable; * Class that parses the user agent string from the browser and provides * information about the browser. Used internally by * {@link com.vaadin.client.BrowserInfo} and - * {@link com.vaadin.terminal.gwt.server.WebBrowser}. Should not be used + * {@link com.vaadin.server.WebBrowser}. Should not be used * directly. * * @author Vaadin Ltd. diff --git a/shared/src/com/vaadin/shared/ui/Connect.java b/shared/src/com/vaadin/shared/ui/Connect.java index d54374a0ec..7756eef890 100644 --- a/shared/src/com/vaadin/shared/ui/Connect.java +++ b/shared/src/com/vaadin/shared/ui/Connect.java @@ -25,7 +25,7 @@ import com.vaadin.shared.Connector; /** * Annotation defining the server side connector that this ClientSideConnector * should connect to. The value must always by a class extending - * {@link com.vaadin.terminal.gwt.server.ClientConnector}. + * {@link com.vaadin.server.ClientConnector}. * <p> * With this annotation client side Vaadin connector is marked to have a server * side counterpart. The value of the annotation is the class of server side |