瀏覽代碼

Update since tags for 8.1.0.alpha2 (#8917)

* Update since tags for 8.1.0.alpha2
tags/8.1.0.alpha2^0
Henri Sara 7 年之前
父節點
當前提交
18d10bfd5b

+ 1
- 1
server/src/main/java/com/vaadin/data/provider/HierarchyMapper.java 查看文件

@@ -38,7 +38,7 @@ import java.util.stream.Stream;
* anything.
*
* @author Vaadin Ltd
* @since
* @since 8.1
*/
class HierarchyMapper implements Serializable {


+ 6
- 6
server/src/main/java/com/vaadin/ui/UI.java 查看文件

@@ -1812,25 +1812,25 @@ public abstract class UI extends AbstractSingleComponentContainer
* Sets the drag source of an active HTML5 drag event.
*
* @param extension
* Extension of the drag source component.
* Extension of the drag source component.
* @see DragSourceExtension
* @since
* @since 8.1
*/
public void setActiveDragSource(
DragSourceExtension<? extends AbstractComponent> extension) {
this.activeDragSource = extension;
activeDragSource = extension;
}

/**
* Gets the drag source of an active HTML5 drag event.
*
* @return Extension of the drag source component if the drag event is
* active and originated from this UI, {@literal null} otherwise.
* active and originated from this UI, {@literal null} otherwise.
* @see DragSourceExtension
* @since
* @since 8.1
*/
public DragSourceExtension<? extends AbstractComponent> getActiveDragSource() {
return this.activeDragSource;
return activeDragSource;
}

/**

Loading…
取消
儲存