(Class<? extends Annotation> annotationType)
| 379 | } |
| 380 | |
| 381 | private static void ensureIsBindingAnnotation(Class<? extends Annotation> annotationType) { |
| 382 | checkArgument( |
| 383 | Annotations.isBindingAnnotation(annotationType), |
| 384 | "%s is not a binding annotation. Please annotate it with @BindingAnnotation.", |
| 385 | annotationType.getName()); |
| 386 | } |
| 387 | |
| 388 | static enum NullAnnotationStrategy implements AnnotationStrategy { |
| 389 | INSTANCE; |
no test coverage detected