1public class ClassWithAnnotationAncestor implements SuppressWarnings {
2
3 public String testMethod() {
4 return "result";
5 }
6
7 @Override
8 public String[] value() {
9 return new String[0];
10 }
11
12 @Override
13 public Class<? extends Annotation> annotationType() {
14 return null;
15 }
16}