Files

16 lines
245 B
Java

import java.lang.annotation.Annotation;
@interface Foo {
String id();
}
class Bar implements Foo {
public String id() {
return null;
}
public Class<? extends Annotation> annotationType() {
return null;
}
}