Browse Source

Updating since tags (#11200)

tags/8.6.0.alpha2^0
Mehdi Javan 5 years ago
parent
commit
eebb0debc4
No account linked to committer's email address

+ 2
- 2
server/src/main/java/com/vaadin/data/provider/DataCommunicator.java View File

@@ -142,7 +142,7 @@ public class DataCommunicator<T> extends AbstractExtension {
/**
* Marks all currently active data objects to be dropped.
*
* @since
* @since 8.6.0
*/
public void dropAllActiveData() {
activeData.forEach(this::dropActiveData);
@@ -165,7 +165,7 @@ public class DataCommunicator<T> extends AbstractExtension {
*
* @return map of ids to dropped data objects
*
* @since
* @since 8.6.0
*/
protected Map<Object, T> getDroppedData() {
Function<T, Object> getId = getDataProvider()::getId;

+ 1
- 1
server/src/main/java/com/vaadin/ui/components/grid/GridMultiSelect.java View File

@@ -31,7 +31,7 @@ import com.vaadin.ui.components.grid.MultiSelectionModel.SelectAllCheckBoxVisibi
*
* @param <T>
* the bean type of grid
* @since
* @since 8.6.0
*/
public class GridMultiSelect<T> implements MultiSelect<T> {


+ 1
- 1
server/src/main/java/com/vaadin/ui/components/grid/GridSingleSelect.java View File

@@ -30,7 +30,7 @@ import com.vaadin.ui.SingleSelect;
*
* @param <T>
* the bean type of grid
* @since
* @since 8.6.0
*/
public class GridSingleSelect<T> implements SingleSelect<T> {


+ 1
- 1
shared/src/main/java/com/vaadin/osgi/resources/OsgiVaadinContributor.java View File

@@ -22,7 +22,7 @@ import java.util.List;
* Each vaadin resource will be checked for the type (theme, widgetset,
* resource) and registered to the OSGi context with the appropriate type.
*
* @since
* @since 8.6.0
*/
public interface OsgiVaadinContributor {
List<OsgiVaadinResource> getContributions();

+ 1
- 1
shared/src/main/java/com/vaadin/osgi/resources/OsgiVaadinResource.java View File

@@ -26,7 +26,7 @@ package com.vaadin.osgi.resources;
* <code>VaadinResourceTrackerComponent</code> automatically publish the
* resource with the given name.
*
* @since
* @since 8.6.0
*/
public interface OsgiVaadinResource {
/**

+ 2
- 2
shared/src/main/java/com/vaadin/osgi/resources/impl/VaadinResourceTrackerComponent.java View File

@@ -200,7 +200,7 @@ public class VaadinResourceTrackerComponent {
/**
*
* @throws NamespaceException
* @since
* @since 8.6.0
*/
@Activate
protected void activate() throws NamespaceException {
@@ -211,7 +211,7 @@ public class VaadinResourceTrackerComponent {
}

/**
* @since
* @since 8.6.0
*/
@Deactivate
protected void deactivate() {

Loading…
Cancel
Save