Uses of Class
com.vaadin.shared.ui.dnd.DropEffect
-
-
Uses of DropEffect in com.vaadin.client.connectors.grid
Methods in com.vaadin.client.connectors.grid with parameters of type DropEffect Modifier and Type Method Description protected void
GridDragSourceConnector. sendDragEndEventToServer(com.google.gwt.dom.client.NativeEvent dragEndEvent, DropEffect dropEffect)
-
Uses of DropEffect in com.vaadin.client.extensions
Methods in com.vaadin.client.extensions with parameters of type DropEffect Modifier and Type Method Description protected void
DragSourceExtensionConnector. sendDragEndEventToServer(com.google.gwt.dom.client.NativeEvent dragEndEvent, DropEffect dropEffect)
Initiates a server RPC for the drag end event. -
Uses of DropEffect in com.vaadin.shared.ui.dnd
Fields in com.vaadin.shared.ui.dnd declared as DropEffect Modifier and Type Field Description DropEffect
DropTargetState. dropEffect
DataTransfer.dropEffect
parameter for the drag event.Methods in com.vaadin.shared.ui.dnd that return DropEffect Modifier and Type Method Description static DropEffect
DropEffect. valueOf(String name)
Returns the enum constant of this type with the specified name.static DropEffect[]
DropEffect. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.vaadin.shared.ui.dnd with parameters of type DropEffect Modifier and Type Method Description void
DragSourceRpc. dragEnd(DropEffect dropEffect)
Called when dragend event happens on client side. -
Uses of DropEffect in com.vaadin.shared.ui.grid
Methods in com.vaadin.shared.ui.grid with parameters of type DropEffect Modifier and Type Method Description void
GridDragSourceRpc. dragEnd(DropEffect dropEffect, List<String> draggedItemKeys)
Called when dragend event happens on client side. -
Uses of DropEffect in com.vaadin.ui.components.grid
Methods in com.vaadin.ui.components.grid with parameters of type DropEffect Modifier and Type Method Description void
TargetDataProviderUpdater. onDrop(DropEffect dropEffect, DataProvider<T,?> dataProvider, int index, Collection<T> items)
Called when items have been dropped on the target Grid.void
SourceDataProviderUpdater. removeItems(DropEffect dropEffect, DataProvider<T,?> dataProvider, Collection<T> items)
Called when Items have been dragged.Constructors in com.vaadin.ui.components.grid with parameters of type DropEffect Constructor Description GridDragEndEvent(Grid<T> source, DropEffect dropEffect, List<T> draggedItems)
Creates a drag end event.GridDropEvent(Grid<T> target, Map<String,String> data, DropEffect dropEffect, DragSourceExtension<? extends AbstractComponent> dragSourceExtension, T dropTargetRow, DropLocation dropLocation, MouseEventDetails mouseEventDetails)
Creates a Grid row drop event.TreeGridDropEvent(TreeGrid<T> target, Map<String,String> data, DropEffect dropEffect, DragSourceExtension<? extends AbstractComponent> dragSourceExtension, T dropTargetRow, DropLocation dropLocation, MouseEventDetails mouseEventDetails, Integer depth, Boolean collapsed)
Creates a TreeGrid row drop event. -
Uses of DropEffect in com.vaadin.ui.dnd
Methods in com.vaadin.ui.dnd that return DropEffect Modifier and Type Method Description DropEffect
DropTargetExtension. getDropEffect()
Returns the drop effect for the current drop target.Methods in com.vaadin.ui.dnd with parameters of type DropEffect Modifier and Type Method Description protected void
DragSourceExtension. onDragEnd(DropEffect dropEffect)
Method invoked when adragend
has been sent from client side.protected void
DropTargetExtension. onDrop(List<String> types, Map<String,String> data, DropEffect dropEffect, MouseEventDetails mouseEventDetails)
Invoked when adrop
has been received from client side.void
DropTargetExtension. setDropEffect(DropEffect dropEffect)
Sets the drop effect for the current drop target. -
Uses of DropEffect in com.vaadin.ui.dnd.event
Methods in com.vaadin.ui.dnd.event that return DropEffect Modifier and Type Method Description DropEffect
DragEndEvent. getDropEffect()
Get drop effect of the dragend event.DropEffect
DropEvent. getDropEffect()
Get the desired dropEffect for the drop event.Constructors in com.vaadin.ui.dnd.event with parameters of type DropEffect Constructor Description DragEndEvent(T source, DropEffect dropEffect)
Creates a drag end event.DropEvent(T target, Map<String,String> data, DropEffect dropEffect, DragSourceExtension<? extends AbstractComponent> dragSourceExtension, MouseEventDetails mouseEventDetails)
Creates a server side drop event.
-