You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

VAcceptCallback.java 563B

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