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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. /**
  22. * Drop event on an HTML5 drop target {@link Grid} row.
  23. *
  24. * @param <T>
  25. * The Grid bean type.
  26. * @author Vaadin Ltd.
  27. * @see com.vaadin.ui.GridDragSourceExtension#addGridDragStartListener(GridDragStartListener)
  28. * @since
  29. */
  30. public class GridDragEndEvent<T> extends DragEndEvent<Grid<T>> {
  31. private final Set<T> draggedItems;
  32. /**
  33. * Creates a drag end event.
  34. *
  35. * @param source
  36. * Grid component in which the items were dragged.
  37. * @param dropEffect
  38. * Drop effect from {@code DataTransfer.dropEffect} object.
  39. * @param draggedItems
  40. * Set of items having been dragged.
  41. */
  42. public GridDragEndEvent(Grid<T> source, DropEffect dropEffect,
  43. Set<T> draggedItems) {
  44. super(source, dropEffect);
  45. this.draggedItems = draggedItems;
  46. }
  47. /**
  48. * Get the dragged row items.
  49. *
  50. * @return Set of row items that were being dragged.
  51. */
  52. public Set<T> getDraggedItems() {
  53. return draggedItems;
  54. }
  55. }