Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

VAcceptCallback.java 562B

1234567891011121314151617
  1. /*
  2. @VaadinApache2LicenseForJavaFiles@
  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. }