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.

VAcceptAll.java 379B

123456789101112131415161718
  1. /*
  2. @VaadinApache2LicenseForJavaFiles@
  3. */
  4. /**
  5. *
  6. */
  7. package com.vaadin.terminal.gwt.client.ui.dd;
  8. import com.vaadin.terminal.gwt.client.UIDL;
  9. @AcceptCriterion("com.vaadin.event.dd.acceptcriteria.AcceptAll")
  10. final public class VAcceptAll extends VAcceptCriterion {
  11. @Override
  12. protected boolean accept(VDragEvent drag, UIDL configuration) {
  13. return true;
  14. }
  15. }