diff options
Diffstat (limited to 'shared/src/com')
-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 |