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.

VHasDropHandler.java 425B

1234567891011121314151617
  1. /*
  2. @ITMillApache2LicenseForJavaFiles@
  3. */
  4. package com.vaadin.terminal.gwt.client.ui.dd;
  5. import com.vaadin.terminal.gwt.client.Paintable;
  6. /**
  7. * Used to detect Widget from widget tree that has {@link #getDropHandler()}
  8. *
  9. * Decide whether to get rid of this class. If so, {@link VAbstractDropHandler}
  10. * must extend {@link Paintable}.
  11. *
  12. */
  13. public interface VHasDropHandler {
  14. public VDropHandler getDropHandler();
  15. }