blob: 7a15ea5b68244b4e0703e0c3f46d9fcf69c5b319 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
/*
@VaadinApache2LicenseForJavaFiles@
*/
package com.vaadin.event.dd;
import java.io.Serializable;
import com.vaadin.event.Transferable;
import com.vaadin.event.dd.acceptcriteria.AcceptAll;
import com.vaadin.event.dd.acceptcriteria.AcceptCriterion;
import com.vaadin.event.dd.acceptcriteria.ServerSideCriterion;
/**
* DropHandlers contain the actual business logic for drag and drop operations.
* <p>
* The {@link #drop(DragAndDropEvent)} method is used to receive the transferred
* data and the {@link #getAcceptCriterion()} method contains the (possibly
* client side verifiable) criterion whether the dragged data will be handled at
* all.
*
* @since 6.3
*
*/
public interface DropHandler extends Serializable {
/**
* Drop method is called when the end user has finished the drag operation
* on a {@link DropTarget} and {@link DragAndDropEvent} has passed
* {@link AcceptCriterion} defined by {@link #getAcceptCriterion()} method.
* The actual business logic of drag and drop operation is implemented into
* this method.
*
* @param event
* the event related to this drop
*/
public void drop(DragAndDropEvent event);
/**
* Returns the {@link AcceptCriterion} used to evaluate whether the
* {@link Transferable} will be handed over to
* {@link DropHandler#drop(DragAndDropEvent)} method. If client side can't
* verify the {@link AcceptCriterion}, the same criteria may be tested also
* prior to actual drop - during the drag operation.
* <p>
* Based on information from {@link AcceptCriterion} components may display
* some hints for the end user whether the drop will be accepted or not.
* <p>
* Vaadin contains a variety of criteria built in that can be composed to
* more complex criterion. If the build in criteria are not enough,
* developer can use a {@link ServerSideCriterion} or build own custom
* criterion with client side counterpart.
* <p>
* If developer wants to handle everything in the
* {@link #drop(DragAndDropEvent)} method, {@link AcceptAll} instance can be
* returned.
*
* @return the {@link AcceptCriterion}
*/
public AcceptCriterion getAcceptCriterion();
}
|