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 411B

1234567891011121314151617
  1. /**
  2. *
  3. */
  4. package com.vaadin.terminal.gwt.client.ui.dd;
  5. import com.vaadin.terminal.gwt.client.UIDL;
  6. final public class VAcceptAll implements VAcceptCriterion {
  7. public void accept(VDragEvent drag, UIDL configuration,
  8. VAcceptCallback callback) {
  9. callback.accepted(drag);
  10. }
  11. public boolean needsServerSideCheck(VDragEvent drag, UIDL criterioUIDL) {
  12. return false;
  13. }
  14. }