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

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