diff options
author | Henri Sara <hesara@vaadin.com> | 2014-07-02 09:39:09 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2014-07-03 06:50:15 +0000 |
commit | ff8efe1b94b077c24085962db733fbb26f213484 (patch) | |
tree | 3586dc6753441dd97e44a6ca1f9b62c82d84be64 /client | |
parent | b258e2b7dd6ae0948ab14c3a2776bc4a8429ea97 (diff) | |
download | vaadin-framework-ff8efe1b94b077c24085962db733fbb26f213484.tar.gz vaadin-framework-ff8efe1b94b077c24085962db733fbb26f213484.zip |
Add missing @since 7.3 to javadoc
Change-Id: I62610ef647fbbb5a7cfae25ac5c7628f78f2c6ff
Diffstat (limited to 'client')
5 files changed, 33 insertions, 22 deletions
diff --git a/client/src/com/vaadin/client/AnimationUtil.java b/client/src/com/vaadin/client/AnimationUtil.java index 2077cee3c0..063a0a163e 100644 --- a/client/src/com/vaadin/client/AnimationUtil.java +++ b/client/src/com/vaadin/client/AnimationUtil.java @@ -24,6 +24,7 @@ import com.google.gwt.dom.client.Style; * Utility methods for working with CSS transitions and animations. * * @author Vaadin Ltd + * @since 7.3 */ public class AnimationUtil { diff --git a/client/src/com/vaadin/client/ResourceLoader.java b/client/src/com/vaadin/client/ResourceLoader.java index e97605a7c6..ceede263fc 100644 --- a/client/src/com/vaadin/client/ResourceLoader.java +++ b/client/src/com/vaadin/client/ResourceLoader.java @@ -380,7 +380,7 @@ public class ResourceLoader { * script tag. The listener is called whenever loading is complete or an * error occurred. * - * @since + * @since 7.3 * @param element * the element to attach a listener to * @param listener diff --git a/client/src/com/vaadin/client/communication/TranslatedURLReference.java b/client/src/com/vaadin/client/communication/TranslatedURLReference.java index c863b7b796..10cfc241cd 100644 --- a/client/src/com/vaadin/client/communication/TranslatedURLReference.java +++ b/client/src/com/vaadin/client/communication/TranslatedURLReference.java @@ -18,6 +18,10 @@ package com.vaadin.client.communication; import com.vaadin.client.ApplicationConnection; import com.vaadin.shared.communication.URLReference; +/** + * @since 7.3 + * @author Vaadin Ltd + */ public class TranslatedURLReference extends URLReference { private ApplicationConnection connection; diff --git a/client/src/com/vaadin/client/ui/VOverlay.java b/client/src/com/vaadin/client/ui/VOverlay.java index a4f62775e1..ae2faee238 100644 --- a/client/src/com/vaadin/client/ui/VOverlay.java +++ b/client/src/com/vaadin/client/ui/VOverlay.java @@ -164,7 +164,13 @@ public class VOverlay extends PopupPanel implements CloseHandler<PopupPanel> { */ public static final String CLASSNAME_CONTAINER = "v-overlay-container"; + /** + * @since 7.3 + */ public static final String ADDITIONAL_CLASSNAME_ANIMATE_IN = "animate-in"; + /** + * @since 7.3 + */ public static final String ADDITIONAL_CLASSNAME_ANIMATE_OUT = "animate-out"; /** diff --git a/client/src/com/vaadin/client/ui/ui/UIConnector.java b/client/src/com/vaadin/client/ui/ui/UIConnector.java index 8997509da6..691b8b2f0b 100644 --- a/client/src/com/vaadin/client/ui/ui/UIConnector.java +++ b/client/src/com/vaadin/client/ui/ui/UIConnector.java @@ -403,7 +403,7 @@ public class UIConnector extends AbstractSingleComponentContainerConnector /** * Reads CSS strings and resources injected by {@link Styles#inject} from * the UIDL stream. - * + * * @param uidl * The uidl which contains "css-resource" and "css-string" tags */ @@ -439,8 +439,8 @@ public class UIConnector extends AbstractSingleComponentContainerConnector /** * Internal helper to get the <head> tag of the page - * - * @since + * + * @since 7.3 * @return the head element */ private HeadElement getHead() { @@ -450,8 +450,8 @@ public class UIConnector extends AbstractSingleComponentContainerConnector /** * Internal helper for removing any stylesheet with the given URL - * - * @since + * + * @since 7.3 * @param url * the url to match with existing stylesheets */ @@ -581,7 +581,7 @@ public class UIConnector extends AbstractSingleComponentContainerConnector /** * Checks if the given sub window is a child of this UI Connector - * + * * @deprecated Should be replaced by a more generic mechanism for getting * non-ComponentConnector children * @param wc @@ -595,7 +595,7 @@ public class UIConnector extends AbstractSingleComponentContainerConnector /** * Return an iterator for current subwindows. This method is meant for * testing purposes only. - * + * * @return */ public List<WindowConnector> getSubWindows() { @@ -622,7 +622,7 @@ public class UIConnector extends AbstractSingleComponentContainerConnector * public API instead of their state object directly. The page state might * not be an independent state object but can be embedded in UI state. * </p> - * + * * @since 7.1 * @return state object of the page */ @@ -686,10 +686,10 @@ public class UIConnector extends AbstractSingleComponentContainerConnector /** * Tries to scroll the viewport so that the given connector is in view. - * + * * @param componentConnector * The connector which should be visible - * + * */ public void scrollIntoView(final ComponentConnector componentConnector) { if (componentConnector == null) { @@ -783,7 +783,7 @@ public class UIConnector extends AbstractSingleComponentContainerConnector /** * Invokes the layout analyzer on the server - * + * * @since 7.1 */ public void analyzeLayouts() { @@ -794,7 +794,7 @@ public class UIConnector extends AbstractSingleComponentContainerConnector * Sends a request to the server to print details to console that will help * the developer to locate the corresponding server-side connector in the * source code. - * + * * @since 7.1 * @param serverConnector * the connector to locate @@ -822,7 +822,7 @@ public class UIConnector extends AbstractSingleComponentContainerConnector /** * Loads the new theme and removes references to the old theme - * + * * @param oldTheme * The name of the old theme * @param newTheme @@ -875,7 +875,7 @@ public class UIConnector extends AbstractSingleComponentContainerConnector /** * Loads the given theme and replaces the given link element with the new * theme link element. - * + * * @param newTheme * The name of the new theme * @param newThemeUrl @@ -924,7 +924,7 @@ public class UIConnector extends AbstractSingleComponentContainerConnector /** * Activates the new theme. Assumes the theme has been loaded and taken into * use in the browser. - * + * * @since 7.3 * @param newTheme */ @@ -945,9 +945,9 @@ public class UIConnector extends AbstractSingleComponentContainerConnector /** * Force a full recursive recheck of every connector's state variables. - * + * * @see #forceStateChange() - * + * * @since 7.3 */ protected static void forceStateChangeRecursively( @@ -968,8 +968,8 @@ public class UIConnector extends AbstractSingleComponentContainerConnector /** * Internal helper to get the theme URL for a given theme - * - * @since + * + * @since 7.3 * @param theme * the name of the theme * @return The URL the theme can be loaded from @@ -982,8 +982,8 @@ public class UIConnector extends AbstractSingleComponentContainerConnector /** * Returns the name of the theme currently in used by the UI - * - * @since + * + * @since 7.3 * @return the theme name used by this UI */ public String getActiveTheme() { |