diff options
Diffstat (limited to 'shared')
-rw-r--r-- | shared/src/com/vaadin/shared/ui/Connect.java | 10 |
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 |