Browse Source

Complete the empty since tag (#11371)

* Complete the empty since tag
tags/8.7.0.alpha1^0
Sun Zhe 5 years ago
parent
commit
f60d431c7c

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

@@ -941,7 +941,7 @@ public abstract class VAbstractCalendarPanel<R extends Enum<R>>
/**
* Returns the value of initialRenderDone
*
* @since
* @since 8.7
*/
public boolean isInitialRenderDone() {
return initialRenderDone;

+ 2
- 2
client/src/main/java/com/vaadin/client/ui/VNativeSelect.java View File

@@ -140,7 +140,7 @@ public class VNativeSelect extends FocusableFlowPanelComposite {
/**
* Returns true if empty selection is allowed.
*
* @since
* @since 8.7
* @return empty selection is allowed
*/
public boolean isEmptySelectionAllowed() {
@@ -150,7 +150,7 @@ public class VNativeSelect extends FocusableFlowPanelComposite {
/**
* Sets true if empty selection is allowed.
*
* @since
* @since 8.7
* @param emptySelectionAllowed
*/
public void setEmptySelectionAllowed(boolean emptySelectionAllowed) {

+ 1
- 1
client/src/main/java/com/vaadin/client/widget/escalator/RowContainer.java View File

@@ -238,7 +238,7 @@ public interface RowContainer {
/**
* For internal use only. May be removed or replaced in the future.
*
* @since
* @since 8.7
* @return {@code true} if row height calculations have been scheduled
*/
public boolean isAutodetectingRowHeightLater();

+ 1
- 1
compatibility-client/src/main/java/com/vaadin/v7/client/widget/escalator/RowContainer.java View File

@@ -230,7 +230,7 @@ public interface RowContainer {
* Any extra content, such as spacers for the body, should not be included
* in this count.
*
* @since
* @since 8.7
*
* @return the actual DOM count of rows
*/

+ 1
- 1
server/src/main/java/com/vaadin/event/FocusShortcut.java View File

@@ -23,7 +23,7 @@ import com.vaadin.ui.Component.Focusable;
* invoked.
*
* @author Vaadin Ltd
* @since
* @since 8.7
*/
public class FocusShortcut extends ShortcutListener {
protected Focusable focusable;

+ 1
- 1
server/src/main/java/com/vaadin/server/ErrorHandlingRunnable.java View File

@@ -46,7 +46,7 @@ public interface ErrorHandlingRunnable extends Runnable, Serializable {
* returned. If the runnable does not extend {@link ErrorHandlingRunnable},
* then the original exception is returned.
*
* @since
* @since 8.7
* @param runnable
* the runnable for which the exception should be processed, not
* <code>null</code>

+ 1
- 1
server/src/main/java/com/vaadin/server/KeyMapper.java View File

@@ -155,7 +155,7 @@ public class KeyMapper<V> implements DataKeyMapper<V> {
*
* @param objects
* new objects set needs to be merged.
* @since
* @since 8.7
*/
public void merge(Set<V> objects) {
final Set<String> keys = new HashSet<>(keyObjectMap.size());

Loading…
Cancel
Save