Browse Source

Add missing @since 7.2.4 in javadoc

Change-Id: I48c37a377d6764333b83512dc613798aaf39423c
tags/7.3.0.beta1
Henri Sara 10 years ago
parent
commit
b258e2b7dd

+ 2
- 0
client/src/com/vaadin/client/ResourceLoader.java View File

* listener to notify when script is loaded * listener to notify when script is loaded
* @param async * @param async
* What mode the script.async attribute should be set to * What mode the script.async attribute should be set to
* @since 7.2.4
*/ */
public void loadScript(final String scriptUrl, public void loadScript(final String scriptUrl,
final ResourceLoadListener resourceLoadListener, boolean async) { final ResourceLoadListener resourceLoadListener, boolean async) {
* execution order for dynamically-added scripts. * execution order for dynamically-added scripts.
* *
* @return Browser supports script.async='false' * @return Browser supports script.async='false'
* @since 7.2.4
*/ */
public static boolean supportsInOrderScriptExecution() { public static boolean supportsInOrderScriptExecution() {
return BrowserInfo.get().isIE() return BrowserInfo.get().isIE()

+ 1
- 0
client/src/com/vaadin/client/Util.java View File

* *
* @param event * @param event
* @return return key code * @return return key code
* @since 7.2.4
*/ */
public static int getKeyCode(KeyEvent<?> event) { public static int getKeyCode(KeyEvent<?> event) {
int keyCode = event.getNativeEvent().getKeyCode(); int keyCode = event.getNativeEvent().getKeyCode();

+ 1
- 0
client/src/com/vaadin/client/VTooltip.java View File

* *
* @param info * @param info
* with the content of the tooltip * with the content of the tooltip
* @since 7.2.4
*/ */
public void initializeAssistiveTooltips() { public void initializeAssistiveTooltips() {
updatePosition(null, true); updatePosition(null, true);

Loading…
Cancel
Save