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.

VDataBound.java 358B

1234567891011121314151617
  1. /*
  2. @ITMillApache2LicenseForJavaFiles@
  3. */
  4. /**
  5. *
  6. */
  7. package com.vaadin.terminal.gwt.client.ui.dd;
  8. import com.vaadin.terminal.gwt.client.UIDL;
  9. final public class VDataBound extends VAcceptCriterion {
  10. @Override
  11. public boolean validates(VDragEvent drag, UIDL configuration) {
  12. return drag.getTransferable().getData("itemId") != null;
  13. }
  14. }