Skip to content

Commit

Permalink
Update since tags for 8.1.0.alpha2 (#8917)
Browse files Browse the repository at this point in the history
* Update since tags for 8.1.0.alpha2
  • Loading branch information
hesara authored and pleku committed Mar 23, 2017
1 parent ef4c63c commit 18d10bf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
* anything.
*
* @author Vaadin Ltd
* @since
* @since 8.1
*/
class HierarchyMapper implements Serializable {

Expand Down
12 changes: 6 additions & 6 deletions server/src/main/java/com/vaadin/ui/UI.java
Original file line number Diff line number Diff line change
Expand Up @@ -1812,25 +1812,25 @@ public Registration addWindowOrderUpdateListener(
* 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;
}

/**
Expand Down

0 comments on commit 18d10bf

Please sign in to comment.