Browse Source

Update @since tags for new API (#14330)

Change-Id: Ieee79bc4e1c61c7a0b00e19c0bca8826b0e10cff
tags/7.3.0.rc1
Artur Signell 9 years ago
parent
commit
2987485ccb

+ 3
- 0
client/src/com/vaadin/client/DeferredWorker.java View File

@@ -20,6 +20,9 @@ package com.vaadin.client;
* scheduled to be executed in the near future and that the framework should
* wait for this work to complete before assuming the UI has reached a steady
* state.
*
* @since 7.3
* @author Vaadin Ltd
*/
public interface DeferredWorker {
/**

+ 4
- 7
client/src/com/vaadin/client/Util.java View File

@@ -476,7 +476,7 @@ public class Util {
/**
* Defers the execution of {@link #runWebkitOverflowAutoFix(Element)}
*
* @since
* @since 7.2.6
* @param elem
* with overflow auto
*/
@@ -963,7 +963,7 @@ public class Util {
* necessary in cases where IE "forgets" to update child elements when they
* resize.
*
* @since
* @since 7.3
* @param e
* The element to perform the hack on
*/
@@ -1438,7 +1438,7 @@ public class Util {
* performed. This may be "forward" or "backward", or "none" if
* the direction is unknown or irrelevant.
*
* @since
* @since 7.3
*/
public native static void setSelectionRange(Element elem, int pos,
int length, String direction)
@@ -1455,7 +1455,7 @@ public class Util {
* string representation.<br/>
* Eg. 50%, 123px, ...
*
* @since
* @since 7.2.6
* @author Vaadin Ltd
*/
@SuppressWarnings("serial")
@@ -1474,7 +1474,6 @@ public class Util {
/**
* Gets the unit value by its type.
*
* @since
* @param type
* the type of the unit as found in the style.
* @return the unit value.
@@ -1532,7 +1531,6 @@ public class Util {
/**
* Creates a {@link CssSize} using a value and its measurement unit.
*
* @since
* @param value
* the value.
* @param unit
@@ -1594,7 +1592,6 @@ public class Util {
/**
* Check whether the two sizes are equals.
*
* @since
* @param cssSize1
* the first size to compare.
* @param cssSize2

+ 4
- 2
client/src/com/vaadin/client/ui/VFilterSelect.java View File

@@ -421,7 +421,7 @@ public class VFilterSelect extends Composite implements Field, KeyDownHandler,
/**
* Select the first item of the suggestions list popup.
*
* @since
* @since 7.2.6
*/
public void selectFirstItem() {
debug("VFS.SP: selectFirstItem()");
@@ -431,7 +431,7 @@ public class VFilterSelect extends Composite implements Field, KeyDownHandler,
/**
* Select the last item of the suggestions list popup.
*
* @since
* @since 7.2.6
*/
public void selectLastItem() {
debug("VFS.SP: selectLastItem()");
@@ -1031,6 +1031,8 @@ public class VFilterSelect extends Composite implements Field, KeyDownHandler,
* menu currently displays the last page with less items then the
* maximum visibility (in which case the scroll is not active, but the
* scroll is active for any other page in general).
*
* @since 7.2.6
*/
@Override
public boolean isScrollActive() {

+ 1
- 1
client/src/com/vaadin/client/ui/VScrollTable.java View File

@@ -8118,7 +8118,7 @@ public class VScrollTable extends FlowPanel implements HasWidgets,
}

/**
* @since
* @since 7.2.6
*/
public void onUnregister() {
if (addCloseHandler != null) {

+ 1
- 1
client/src/com/vaadin/client/ui/VTabsheet.java View File

@@ -1359,7 +1359,7 @@ public class VTabsheet extends VTabsheetBase implements Focusable, SubPartAware
/**
* Delegate method for the onFocus event occurring on Tab.
*
* @since
* @since 7.2.6
* @param newFocusTab
* the new focused tab.
* @see #onBlur(Tab)

+ 7
- 7
client/src/com/vaadin/client/ui/menubar/MenuBar.java View File

@@ -331,7 +331,7 @@ public class MenuBar extends Widget implements PopupListener {
/**
* Gets the first item from the menu or null if no items.
*
* @since
* @since 7.2.6
* @return the first item from the menu or null if no items.
*/
public MenuItem getFirstItem() {
@@ -341,7 +341,7 @@ public class MenuBar extends Widget implements PopupListener {
/**
* Gest the last item from the menu or null if no items.
*
* @since
* @since 7.2.6
* @return the last item from the menu or null if no items.
*/
public MenuItem getLastItem() {
@@ -352,7 +352,7 @@ public class MenuBar extends Widget implements PopupListener {
/**
* Gets the index of the selected item.
*
* @since
* @since 7.2.6
* @return the index of the selected item.
*/
public int getSelectedIndex() {
@@ -532,7 +532,7 @@ public class MenuBar extends Widget implements PopupListener {
/**
* Scroll the selected item into view.
*
* @since
* @since 7.2.6
*/
public void scrollSelectionIntoView() {
scrollItemIntoView(selectedItem);
@@ -541,7 +541,7 @@ public class MenuBar extends Widget implements PopupListener {
/**
* Sets the menu scroll enabled or disabled.
*
* @since
* @since 7.2.6
* @param enabled
* the enabled state of the scroll.
*/
@@ -565,7 +565,7 @@ public class MenuBar extends Widget implements PopupListener {
/**
* Gets whether the scroll is activate for this menu.
*
* @since
* @since 7.2.6
* @return true if the scroll is active, otherwise false.
*/
public boolean isScrollActive() {
@@ -580,7 +580,7 @@ public class MenuBar extends Widget implements PopupListener {
/**
* Gets the preferred height of the menu.
*
* @since
* @since 7.2.6
*/
protected int getPreferredHeight() {
return table.getOffsetHeight();

Loading…
Cancel
Save