You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

GridDragEndEvent.java 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. * Copyright 2000-2016 Vaadin Ltd.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License"); you may not
  5. * use this file except in compliance with the License. You may obtain a copy of
  6. * the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  12. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  13. * License for the specific language governing permissions and limitations under
  14. * the License.
  15. */
  16. package com.vaadin.event.dnd.grid;
  17. import java.util.Set;
  18. import com.vaadin.event.dnd.DragEndEvent;
  19. import com.vaadin.shared.ui.dnd.DropEffect;
  20. import com.vaadin.ui.Grid;
  21. import com.vaadin.ui.GridDragSource;
  22. /**
  23. * Drop event on an HTML5 drop target {@link Grid} row.
  24. *
  25. * @param <T>
  26. * The Grid bean type.
  27. * @author Vaadin Ltd.
  28. * @see GridDragSource#addGridDragStartListener(GridDragStartListener)
  29. * @since
  30. */
  31. public class GridDragEndEvent<T> extends DragEndEvent<Grid<T>> {
  32. private final Set<T> draggedItems;
  33. /**
  34. * Creates a drag end event.
  35. *
  36. * @param source
  37. * Grid component in which the items were dragged.
  38. * @param dropEffect
  39. * Drop effect from {@code DataTransfer.dropEffect} object.
  40. * @param draggedItems
  41. * Set of items having been dragged.
  42. */
  43. public GridDragEndEvent(Grid<T> source, DropEffect dropEffect,
  44. Set<T> draggedItems) {
  45. super(source, dropEffect);
  46. this.draggedItems = draggedItems;
  47. }
  48. /**
  49. * Get the dragged row items.
  50. *
  51. * @return Set of row items that were being dragged.
  52. */
  53. public Set<T> getDraggedItems() {
  54. return draggedItems;
  55. }
  56. }