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.

ClientCriterion.java 580B

12345678910111213141516171819202122232425
  1. /*
  2. @ITMillApache2LicenseForJavaFiles@
  3. */
  4. package com.vaadin.event.dd.acceptCriteria;
  5. import java.lang.annotation.ElementType;
  6. import java.lang.annotation.Retention;
  7. import java.lang.annotation.RetentionPolicy;
  8. import java.lang.annotation.Target;
  9. import com.vaadin.terminal.gwt.client.ui.dd.VAcceptCriterion;
  10. /**
  11. * TODO
  12. *
  13. * @since 6.3
  14. */
  15. @Retention(RetentionPolicy.RUNTIME)
  16. @Target(ElementType.TYPE)
  17. public @interface ClientCriterion {
  18. /**
  19. * @return the client side counterpart for the annotated criterion
  20. */
  21. Class<? extends VAcceptCriterion> value();
  22. }