mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
16 lines
245 B
Java
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;
|
|
}
|
|
}
|