diff options
author | Artur Signell <artur@vaadin.com> | 2012-08-30 17:02:08 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-08-30 17:02:08 +0300 |
commit | 8941056349e302e687e40e94c13709e75f256d73 (patch) | |
tree | 34e0d95656ddb607792c849a203c4da6ead06421 /shared | |
parent | c6112a24777ce7f6b708039e16909ed939014ca4 (diff) | |
download | vaadin-framework-8941056349e302e687e40e94c13709e75f256d73.tar.gz vaadin-framework-8941056349e302e687e40e94c13709e75f256d73.zip |
Reformatted project
Diffstat (limited to 'shared')
5 files changed, 17 insertions, 21 deletions
diff --git a/shared/src/com/vaadin/shared/Connector.java b/shared/src/com/vaadin/shared/Connector.java index 87fc05f5d0..f3d5d16e59 100644 --- a/shared/src/com/vaadin/shared/Connector.java +++ b/shared/src/com/vaadin/shared/Connector.java @@ -29,9 +29,8 @@ 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.client.ServerConnector} and server side - * classes should implement - * {@link com.vaadin.server.ClientConnector}. + * {@link com.vaadin.client.ServerConnector} and server side classes should + * implement {@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 5009857530..2143e884c0 100644 --- a/shared/src/com/vaadin/shared/VBrowserDetails.java +++ b/shared/src/com/vaadin/shared/VBrowserDetails.java @@ -21,8 +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.server.WebBrowser}. Should not be used - * directly. + * {@link com.vaadin.server.WebBrowser}. Should not be used directly. * * @author Vaadin Ltd. * @since 6.3 diff --git a/shared/src/com/vaadin/shared/communication/SharedState.java b/shared/src/com/vaadin/shared/communication/SharedState.java index f35d4675f3..09147ac97d 100644 --- a/shared/src/com/vaadin/shared/communication/SharedState.java +++ b/shared/src/com/vaadin/shared/communication/SharedState.java @@ -38,9 +38,9 @@ import com.vaadin.shared.Connector; * arrays of these. * * On the client side the connector should override - * {@link com.vaadin.client.ui.AbstractConnector#getState()} to - * return the correct state type. This automatically causes a correct state - * object to be created. + * {@link com.vaadin.client.ui.AbstractConnector#getState()} to return the + * correct state type. This automatically causes a correct state object to be + * created. * * Subclasses of a {@link Connector} using shared state should also provide a * subclass of the shared state class of the parent class to extend the state. A diff --git a/shared/src/com/vaadin/shared/ui/Connect.java b/shared/src/com/vaadin/shared/ui/Connect.java index 17171ec843..c7a55775bd 100644 --- a/shared/src/com/vaadin/shared/ui/Connect.java +++ b/shared/src/com/vaadin/shared/ui/Connect.java @@ -46,9 +46,8 @@ 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.server.widgetsetutils.EagerWidgetMapGenerator}, - * but if the - * {@link com.vaadin.server.widgetsetutils.WidgetMapGenerator} is used + * {@link com.vaadin.server.widgetsetutils.EagerWidgetMapGenerator}, but if + * the {@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,15 +68,14 @@ public @interface Connect { * the best of both worlds. * <p> * Fine tunings to widget loading can also be made by overriding - * {@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.server.widgetsetutils.CustomWidgetMapGenerator} - * is an abstract generator implementation for easy customization. Vaadin - * package also includes - * {@link com.vaadin.server.widgetsetutils.LazyWidgetMapGenerator} - * that makes as many widgets lazily loaded as possible. + * {@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.server.widgetsetutils.CustomWidgetMapGenerator} is an + * abstract generator implementation for easy customization. Vaadin package + * also includes + * {@link com.vaadin.server.widgetsetutils.LazyWidgetMapGenerator} that + * makes as many widgets lazily loaded as possible. * * @since 6.4 * diff --git a/shared/src/com/vaadin/shared/ui/link/LinkConstants.java b/shared/src/com/vaadin/shared/ui/link/LinkConstants.java index 61fc73577f..dd6079167e 100644 --- a/shared/src/com/vaadin/shared/ui/link/LinkConstants.java +++ b/shared/src/com/vaadin/shared/ui/link/LinkConstants.java @@ -18,6 +18,6 @@ package com.vaadin.shared.ui.link; import com.vaadin.shared.ComponentState; -public class LinkConstants { +public class LinkConstants { public static String HREF_RESOURCE = "href"; } |