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.

DragEndEvent.java 2.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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;
  17. import java.util.LinkedHashMap;
  18. import java.util.List;
  19. import java.util.Map;
  20. import com.vaadin.shared.ui.dnd.EffectAllowed;
  21. import com.vaadin.ui.Component;
  22. /**
  23. * Server side dragend event. Fired when an HTML5 dragend happens.
  24. *
  25. * @see DragSourceExtension#addDragEndListener(DragEndListener)
  26. */
  27. public class DragEndEvent extends Component.Event {
  28. private final Map<String, String> data;
  29. private final EffectAllowed effectAllowed;
  30. /**
  31. * Creates a new server side dragend event.
  32. *
  33. * @param source
  34. * Draggable component.
  35. * @param types
  36. * List of data types from {@code DataTransfer.types}.
  37. * @param data
  38. * Map of all data from {@code DataTransfer}.
  39. * @param effectAllowed
  40. * Parameter from {@code DataTransfer.effectAllowed}.
  41. */
  42. public DragEndEvent(Component source, List<String> types,
  43. Map<String, String> data, EffectAllowed effectAllowed) {
  44. super(source);
  45. // Create a linked map that preserves the order of types
  46. this.data = new LinkedHashMap<>();
  47. types.forEach(type -> this.data.put(type, data.get(type)));
  48. this.effectAllowed = effectAllowed;
  49. }
  50. /**
  51. * Get data from the client side {@code DataTransfer} object.
  52. *
  53. * @param format
  54. * Data format, e.g. {@code text/plain} or {@code text/uri-list}.
  55. * @return Data for the given format if exists in the client side {@code
  56. * DataTransfer}, otherwise {@code null}.
  57. */
  58. public String getTransferData(String format) {
  59. return data != null ? data.get(format) : null;
  60. }
  61. /**
  62. * Returns the {@code effectAllowed} parameter of this event.
  63. *
  64. * @return This event's {@code effectAllowed} parameter.
  65. */
  66. public EffectAllowed getEffectAllowed() {
  67. return effectAllowed;
  68. }
  69. }