diff options
author | Artur Signell <artur@vaadin.com> | 2012-08-29 11:21:56 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-08-29 11:21:56 +0300 |
commit | bfbfdd51a0563d212d1e811a3eb534122847d206 (patch) | |
tree | 8fe2f3f9feda9fe3a1c22ba261c7b498718ddbfd /shared/src | |
parent | ed8a1d154436a635b29a35093cc349e4a4aa2897 (diff) | |
download | vaadin-framework-bfbfdd51a0563d212d1e811a3eb534122847d206.tar.gz vaadin-framework-bfbfdd51a0563d212d1e811a3eb534122847d206.zip |
Renamed com.vaadin.terminal.gwt.client to com.vaadin.client (#9432)
Diffstat (limited to 'shared/src')
6 files changed, 8 insertions, 8 deletions
diff --git a/shared/src/com/vaadin/shared/AbstractFieldState.java b/shared/src/com/vaadin/shared/AbstractFieldState.java index 0389507f6c..02cbd16a6f 100644 --- a/shared/src/com/vaadin/shared/AbstractFieldState.java +++ b/shared/src/com/vaadin/shared/AbstractFieldState.java @@ -131,7 +131,7 @@ public class AbstractFieldState extends ComponentState implements TabIndexState /* * (non-Javadoc) * - * @see com.vaadin.terminal.gwt.client.ComponentState#getTabIndex() + * @see com.vaadin.client.ComponentState#getTabIndex() */ @Override public int getTabIndex() { @@ -141,7 +141,7 @@ public class AbstractFieldState extends ComponentState implements TabIndexState /* * (non-Javadoc) * - * @see com.vaadin.terminal.gwt.client.ui.TabIndexState#setTabIndex(int) + * @see com.vaadin.client.ui.TabIndexState#setTabIndex(int) */ @Override public void setTabIndex(int tabIndex) { diff --git a/shared/src/com/vaadin/shared/Connector.java b/shared/src/com/vaadin/shared/Connector.java index 5927d08d79..8248d9b576 100644 --- a/shared/src/com/vaadin/shared/Connector.java +++ b/shared/src/com/vaadin/shared/Connector.java @@ -29,7 +29,7 @@ import java.io.Serializable; * <p> * No classes should implement this interface directly, client side classes * wanting to communicate with server side should implement - * {@link com.vaadin.terminal.gwt.client.ServerConnector} and server side + * {@link com.vaadin.client.ServerConnector} and server side * classes should implement * {@link com.vaadin.terminal.gwt.server.ClientConnector}. * </p> diff --git a/shared/src/com/vaadin/shared/VBrowserDetails.java b/shared/src/com/vaadin/shared/VBrowserDetails.java index 2e81fbfe61..ccee376eb9 100644 --- a/shared/src/com/vaadin/shared/VBrowserDetails.java +++ b/shared/src/com/vaadin/shared/VBrowserDetails.java @@ -20,7 +20,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.terminal.gwt.client.BrowserInfo} and + * {@link com.vaadin.client.BrowserInfo} and * {@link com.vaadin.terminal.gwt.server.WebBrowser}. Should not be used * directly. * diff --git a/shared/src/com/vaadin/shared/communication/SharedState.java b/shared/src/com/vaadin/shared/communication/SharedState.java index 841e4579a2..f9c9f642d0 100644 --- a/shared/src/com/vaadin/shared/communication/SharedState.java +++ b/shared/src/com/vaadin/shared/communication/SharedState.java @@ -36,7 +36,7 @@ import com.vaadin.shared.Connector; * arrays of these. * * On the client side the connector should override - * {@link com.vaadin.terminal.gwt.client.ui.AbstractConnector#getState()} to + * {@link com.vaadin.client.ui.AbstractConnector#getState()} to * return the correct state type. This automatically causes a correct state * object to be created. * diff --git a/shared/src/com/vaadin/shared/ui/button/ButtonState.java b/shared/src/com/vaadin/shared/ui/button/ButtonState.java index 7e76f5d1e8..2383b038bd 100644 --- a/shared/src/com/vaadin/shared/ui/button/ButtonState.java +++ b/shared/src/com/vaadin/shared/ui/button/ButtonState.java @@ -114,7 +114,7 @@ public class ButtonState extends ComponentState implements TabIndexState { /* * (non-Javadoc) * - * @see com.vaadin.terminal.gwt.client.ui.TabIndexState#getTabIndex() + * @see com.vaadin.client.ui.TabIndexState#getTabIndex() */ @Override public int getTabIndex() { @@ -124,7 +124,7 @@ public class ButtonState extends ComponentState implements TabIndexState { /* * (non-Javadoc) * - * @see com.vaadin.terminal.gwt.client.ui.TabIndexState#setTabIndex(int) + * @see com.vaadin.client.ui.TabIndexState#setTabIndex(int) */ @Override public void setTabIndex(int tabIndex) { diff --git a/shared/src/com/vaadin/shared/ui/dd/AcceptCriterion.java b/shared/src/com/vaadin/shared/ui/dd/AcceptCriterion.java index e53f75e552..d0805e453e 100644 --- a/shared/src/com/vaadin/shared/ui/dd/AcceptCriterion.java +++ b/shared/src/com/vaadin/shared/ui/dd/AcceptCriterion.java @@ -23,7 +23,7 @@ import java.lang.annotation.Target; /** * An annotation type used to point the server side counterpart for client side - * a {@link com.vaadin.terminal.gwt.client.ui.dd.VAcceptCriterion} class. + * a {@link com.vaadin.client.ui.dd.VAcceptCriterion} class. * <p> * Annotations are used at GWT compilation phase, so remember to rebuild your * widgetset if you do changes for {@link AcceptCriterion} mappings. |