com.vaadin.terminal.gwt.client.ui.
Class VDragAndDropWrapper.CustomDropHandler
java.lang.Object
com.vaadin.terminal.gwt.client.ui.dd.VAbstractDropHandler
com.vaadin.terminal.gwt.client.ui.VDragAndDropWrapper.CustomDropHandler
All Implemented Interfaces:
Enclosing class:
- extends VAbstractDropHandler
public class VDragAndDropWrapper.CustomDropHandler
Constructor Summary | |
---|---|
VDragAndDropWrapper.CustomDropHandler()
|
Method Summary | |
---|---|
protected void |
dragAccepted(VDragEvent drag)
This method is called when a valid drop location was found with AcceptCriterion either via client or server side check. |
void |
dragEnter(VDragEvent drag)
The default implementation in VAbstractDropHandler checks if the
Transferable is accepted. |
void |
dragLeave(VDragEvent drag)
Default implementation does nothing. |
void |
dragOver(VDragEvent drag)
Default implementation does nothing. |
boolean |
drop(VDragEvent drag)
The default implemmentation visits server if AcceptCriterion
can't be verified on client or if AcceptCriterion are met on
client. |
ApplicationConnection |
getApplicationConnection()
Returns the application connection to which this VDropHandler
belongs to. |
Paintable |
getPaintable()
Returns the Paintable who owns this VAbstractDropHandler . |
Methods inherited from class com.vaadin.terminal.gwt.client.ui.dd.VAbstractDropHandler |
---|
updateAcceptRules, validate |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
VDragAndDropWrapper.CustomDropHandler
public VDragAndDropWrapper.CustomDropHandler()
Method Detail |
---|
dragEnter
public void dragEnter(VDragEvent drag)
- Specified by:
dragEnter
in interfaceVDropHandler
- Overrides:
dragEnter
in classVAbstractDropHandler
- Parameters:
drag
- DragEvent which contains the transferable and other information for the operation
Description copied from class: VAbstractDropHandler
The default implementation in VAbstractDropHandler
checks if the
Transferable is accepted.
If transferable is accepted (either via server visit or client side
rules) the default implementation calls abstract
VAbstractDropHandler.dragAccepted(VDragEvent)
method.
If drop handler has distinct places where some parts may accept the
Transferable
and others don't, one should use similar validation
logic in dragOver method and replace this method with empty
implementation.
dragLeave
public void dragLeave(VDragEvent drag)
- Specified by:
dragLeave
in interfaceVDropHandler
- Overrides:
dragLeave
in classVAbstractDropHandler
- Parameters:
drag
- DragEvent which contains the transferable and other information for the operation
Description copied from class: VAbstractDropHandler
Default implementation does nothing. Implementors should clean possible emphasis or drag icons here.
dragOver
public void dragOver(VDragEvent drag)
- Specified by:
dragOver
in interfaceVDropHandler
- Overrides:
dragOver
in classVAbstractDropHandler
Description copied from class: VAbstractDropHandler
Default implementation does nothing.
drop
public boolean drop(VDragEvent drag)
- Specified by:
drop
in interfaceVDropHandler
- Overrides:
drop
in classVAbstractDropHandler
- Returns:
- true if the Tranferrable of this drag event needs to be sent to the server, false if drop is rejected or no server side event should be sent
Description copied from class: VAbstractDropHandler
The default implemmentation visits server if AcceptCriterion
can't be verified on client or if AcceptCriterion
are met on
client.
dragAccepted
protected void dragAccepted(VDragEvent drag)
- Specified by:
dragAccepted
in classVAbstractDropHandler
Description copied from class: VAbstractDropHandler
This method is called when a valid drop location was found with
AcceptCriterion
either via client or server side check.
Implementations can set some hints for users here to highlight that the drag is on a valid drop location.
getPaintable
public Paintable getPaintable()
- Specified by:
getPaintable
in interfaceVDropHandler
- Specified by:
getPaintable
in classVAbstractDropHandler
Description copied from class: VAbstractDropHandler
Returns the Paintable who owns this VAbstractDropHandler
. Server
side counterpart of the Paintable is expected to implement
DropTarget
interface.
getApplicationConnection
public ApplicationConnection getApplicationConnection()
Description copied from interface: VDropHandler
Returns the application connection to which this VDropHandler
belongs to. DragAndDropManager uses this fucction to send Transferable to
server side.