summaryrefslogtreecommitdiffstats
path: root/shared
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-08-29 12:29:14 +0300
committerArtur Signell <artur@vaadin.com>2012-08-29 12:29:20 +0300
commitf5f73df7937d6fc8008ae34cc5a7d39e60de266b (patch)
tree028a4ff386f0fdc8b166274138f376957ef0f0f2 /shared
parent63595217a224b9fbc6de4b8bdc2e6b317e0558d5 (diff)
downloadvaadin-framework-f5f73df7937d6fc8008ae34cc5a7d39e60de266b.tar.gz
vaadin-framework-f5f73df7937d6fc8008ae34cc5a7d39e60de266b.zip
Renamed com.vaadin.terminal.gwt.widgetsetutils -> com.vaadin.server.widgetsetutils (#9431)
Diffstat (limited to 'shared')
-rw-r--r--shared/src/com/vaadin/shared/ui/Connect.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/shared/src/com/vaadin/shared/ui/Connect.java b/shared/src/com/vaadin/shared/ui/Connect.java
index 7756eef890..17171ec843 100644
--- a/shared/src/com/vaadin/shared/ui/Connect.java
+++ b/shared/src/com/vaadin/shared/ui/Connect.java
@@ -46,9 +46,9 @@ public @interface Connect {
* Depending on the used WidgetMap generator, these optional hints may be
* used to define how the client side components are loaded by the browser.
* The default is to eagerly load all widgets
- * {@link com.vaadin.terminal.gwt.widgetsetutils.EagerWidgetMapGenerator},
+ * {@link com.vaadin.server.widgetsetutils.EagerWidgetMapGenerator},
* but if the
- * {@link com.vaadin.terminal.gwt.widgetsetutils.WidgetMapGenerator} is used
+ * {@link com.vaadin.server.widgetsetutils.WidgetMapGenerator} is used
* by the widgetset, these load style hints are respected.
* <p>
* Lazy loading of a widget implementation means the client side component
@@ -69,14 +69,14 @@ public @interface Connect {
* the best of both worlds.
* <p>
* Fine tunings to widget loading can also be made by overriding
- * {@link com.vaadin.terminal.gwt.widgetsetutils.WidgetMapGenerator} in the
+ * {@link com.vaadin.server.widgetsetutils.WidgetMapGenerator} in the
* GWT module. Tunings might be helpful if the end users have slow
* connections and especially if they have high latency in their network.
* The
- * {@link com.vaadin.terminal.gwt.widgetsetutils.CustomWidgetMapGenerator}
+ * {@link com.vaadin.server.widgetsetutils.CustomWidgetMapGenerator}
* is an abstract generator implementation for easy customization. Vaadin
* package also includes
- * {@link com.vaadin.terminal.gwt.widgetsetutils.LazyWidgetMapGenerator}
+ * {@link com.vaadin.server.widgetsetutils.LazyWidgetMapGenerator}
* that makes as many widgets lazily loaded as possible.
*
* @since 6.4