public class CalendarMonthDropHandler extends CalendarDropHandler
calendarConnector
Constructor and Description |
---|
CalendarMonthDropHandler(CalendarConnector connector) |
Modifier and Type | Method and Description |
---|---|
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. |
getApplicationConnection, getConnector
updateAcceptRules, validate
public CalendarMonthDropHandler(CalendarConnector connector)
protected void dragAccepted(VDragEvent drag)
VAbstractDropHandler
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.
dragAccepted
in class VAbstractDropHandler
public void dragOver(VDragEvent drag)
VAbstractDropHandler
dragOver
in interface VDropHandler
dragOver
in class VAbstractDropHandler
public void dragEnter(VDragEvent drag)
VAbstractDropHandler
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.
dragEnter
in interface VDropHandler
dragEnter
in class VAbstractDropHandler
drag
- DragEvent which contains the transferable and other
information for the operationpublic boolean drop(VDragEvent drag)
VAbstractDropHandler
AcceptCriterion
can't be verified on client or if AcceptCriterion
are met on
client.drop
in interface VDropHandler
drop
in class VAbstractDropHandler
public void dragLeave(VDragEvent drag)
VAbstractDropHandler
dragLeave
in interface VDropHandler
dragLeave
in class VAbstractDropHandler
drag
- DragEvent which contains the transferable and other
information for the operationCopyright © 2016 Vaadin Ltd. All rights reserved.