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