blob: cd9ade88c257e4b8a572197315b56b97c941a18f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
@VaadinApache2LicenseForJavaFiles@
*/
package com.vaadin.terminal.gwt.client.ui.dd;
public interface VAcceptCallback {
/**
* This method is called by {@link VDragAndDropManager} if the
* {@link VDragEvent} is still active. Developer can update for example drag
* icon or empahsis the target if the target accepts the transferable. If
* the drag and drop operation ends or the {@link VAbstractDropHandler} has
* changed before response arrives, the method is never called.
*/
public void accepted(VDragEvent event);
}
|