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.

VDropDetailEquals.java 517B

1234567891011121314151617181920
  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 VDropDetailEquals extends VAcceptCriterion {
  10. @Override
  11. public boolean validates(VDragEvent drag, UIDL configuration) {
  12. String name = configuration.getStringAttribute("p");
  13. String value = configuration.getStringAttribute("v");
  14. Object object = drag.getDropDetails().get(name);
  15. return value.equals(object);
  16. }
  17. }