diff options
author | Henri Sara <henri.sara@gmail.com> | 2017-04-19 18:15:05 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-19 18:15:05 +0300 |
commit | 37219932b913179910fa4e0e005f9417eac93d95 (patch) | |
tree | b0fbce45bf6b1e08ef0aa0df6a1be0b509463772 /shared/src | |
parent | 7d75f33707c5a88b65c429f34c4025910f243d35 (diff) | |
download | vaadin-framework-37219932b913179910fa4e0e005f9417eac93d95.tar.gz vaadin-framework-37219932b913179910fa4e0e005f9417eac93d95.zip |
Add/fill in missing @since tags for 8.1 (#9106)8.1.0.alpha6
Diffstat (limited to 'shared/src')
7 files changed, 20 insertions, 21 deletions
diff --git a/shared/src/main/java/com/vaadin/shared/composite/CompositeState.java b/shared/src/main/java/com/vaadin/shared/composite/CompositeState.java index 1f552390df..cd4a9a0cab 100644 --- a/shared/src/main/java/com/vaadin/shared/composite/CompositeState.java +++ b/shared/src/main/java/com/vaadin/shared/composite/CompositeState.java @@ -21,7 +21,7 @@ import com.vaadin.shared.AbstractComponentState; * Shared state for Composite. * * @author Vaadin Ltd - * @since + * @since 8.1 */ public class CompositeState extends AbstractComponentState { } diff --git a/shared/src/main/java/com/vaadin/shared/ui/grid/DropLocation.java b/shared/src/main/java/com/vaadin/shared/ui/grid/DropLocation.java index 1453c05c71..0bd124f983 100644 --- a/shared/src/main/java/com/vaadin/shared/ui/grid/DropLocation.java +++ b/shared/src/main/java/com/vaadin/shared/ui/grid/DropLocation.java @@ -19,7 +19,7 @@ package com.vaadin.shared.ui.grid; * Defines drop locations within a Grid row. * * @author Vaadin Ltd. - * @since + * @since 8.1 */ public enum DropLocation { diff --git a/shared/src/main/java/com/vaadin/shared/ui/grid/DropMode.java b/shared/src/main/java/com/vaadin/shared/ui/grid/DropMode.java index 1da17f1bba..c458b9d76c 100644 --- a/shared/src/main/java/com/vaadin/shared/ui/grid/DropMode.java +++ b/shared/src/main/java/com/vaadin/shared/ui/grid/DropMode.java @@ -19,20 +19,19 @@ package com.vaadin.shared.ui.grid; * Defines the locations within the Grid row where an element can be dropped. * * @author Vaadin Ltd. - * @since + * @since 8.1 */ public enum DropMode { /** - * The drop event can happen between Grid rows. The drop is above a row - * when the cursor is over the top 50% of a row, otherwise below the - * row. + * The drop event can happen between Grid rows. The drop is above a row when + * the cursor is over the top 50% of a row, otherwise below the row. */ BETWEEN, /** - * The drop event can happen on top of Grid rows. The target of the drop - * is the row under the cursor at the time of the drop event. + * The drop event can happen on top of Grid rows. The target of the drop is + * the row under the cursor at the time of the drop event. */ ON_TOP, @@ -40,8 +39,8 @@ public enum DropMode { * The drop event can happen either on top of or between Grid rows. The drop * is either * <ul> - * <li><i>above</i> a row when the cursor is over a specified portion of - * the top part of the row,</li> + * <li><i>above</i> a row when the cursor is over a specified portion of the + * top part of the row,</li> * <li><i>below</i> when the cursor is over a specified portion of the * bottom part of the row, or</li> * <li><i>on top</i> when the cursor is over the row but doesn't match the diff --git a/shared/src/main/java/com/vaadin/shared/ui/grid/GridDragSourceRpc.java b/shared/src/main/java/com/vaadin/shared/ui/grid/GridDragSourceRpc.java index 066e193157..3c080b6bcb 100644 --- a/shared/src/main/java/com/vaadin/shared/ui/grid/GridDragSourceRpc.java +++ b/shared/src/main/java/com/vaadin/shared/ui/grid/GridDragSourceRpc.java @@ -25,7 +25,7 @@ import com.vaadin.shared.ui.dnd.DropEffect; * corresponding client side events happen on the drag source Grid. * * @author Vaadin Ltd. - * @since + * @since 8.1 */ public interface GridDragSourceRpc extends ServerRpc { @@ -33,7 +33,7 @@ public interface GridDragSourceRpc extends ServerRpc { * Called when dragstart event happens on client side. * * @param draggedItemKeys - * Keys of the items in Grid being dragged. + * Keys of the items in Grid being dragged. */ public void dragStart(List<String> draggedItemKeys); @@ -41,10 +41,10 @@ public interface GridDragSourceRpc extends ServerRpc { * Called when dragend event happens on client side. * * @param dropEffect - * Drop effect of the dragend event, extracted from {@code + * Drop effect of the dragend event, extracted from {@code * DataTransfer.dropEffect} parameter. * @param draggedItemKeys - * Keys of the items in Grid having been dragged. + * Keys of the items in Grid having been dragged. */ public void dragEnd(DropEffect dropEffect, List<String> draggedItemKeys); } diff --git a/shared/src/main/java/com/vaadin/shared/ui/grid/GridDragSourceState.java b/shared/src/main/java/com/vaadin/shared/ui/grid/GridDragSourceState.java index 3d020043fe..e569933a6b 100644 --- a/shared/src/main/java/com/vaadin/shared/ui/grid/GridDragSourceState.java +++ b/shared/src/main/java/com/vaadin/shared/ui/grid/GridDragSourceState.java @@ -21,7 +21,7 @@ import com.vaadin.shared.ui.dnd.DragSourceState; * State class containing parameters for GridDragSource. * * @author Vaadin Ltd - * @since + * @since 8.1 */ public class GridDragSourceState extends DragSourceState { diff --git a/shared/src/main/java/com/vaadin/shared/ui/grid/GridDropTargetRpc.java b/shared/src/main/java/com/vaadin/shared/ui/grid/GridDropTargetRpc.java index 84bb6ed890..e0b51a0242 100644 --- a/shared/src/main/java/com/vaadin/shared/ui/grid/GridDropTargetRpc.java +++ b/shared/src/main/java/com/vaadin/shared/ui/grid/GridDropTargetRpc.java @@ -22,7 +22,7 @@ import com.vaadin.shared.communication.ServerRpc; * drop target Grid. * * @author Vaadin Ltd. - * @since + * @since 8.1 */ public interface GridDropTargetRpc extends ServerRpc { @@ -30,12 +30,12 @@ public interface GridDropTargetRpc extends ServerRpc { * Called when drop event happens on client side. * * @param dataTransferText - * Data of type {@code "text"} from the {@code DataTransfer} - * object. + * Data of type {@code "text"} from the {@code DataTransfer} + * object. * @param rowKey - * Key of the row on which the drop event occured. + * Key of the row on which the drop event occured. * @param dropLocation - * Location of the drop within the row. + * Location of the drop within the row. */ public void drop(String dataTransferText, String rowKey, DropLocation dropLocation); diff --git a/shared/src/main/java/com/vaadin/shared/ui/grid/GridDropTargetState.java b/shared/src/main/java/com/vaadin/shared/ui/grid/GridDropTargetState.java index 36869bfd62..b0c434305f 100644 --- a/shared/src/main/java/com/vaadin/shared/ui/grid/GridDropTargetState.java +++ b/shared/src/main/java/com/vaadin/shared/ui/grid/GridDropTargetState.java @@ -21,7 +21,7 @@ import com.vaadin.shared.ui.dnd.DropTargetState; * State class containing parameters for GridDropTarget. * * @author Vaadin Ltd - * @since + * @since 8.1 */ public class GridDropTargetState extends DropTargetState { |