blob: 7a2224ea076a79257b4ac885f128e7bcfa860d3c [file] [log] [blame]
package priority;
import static java.lang.annotation.ElementType.METHOD;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
@Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
@Target({METHOD})
public @interface Priority {
int value() default 0;
}