mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
8 lines
178 B
Java
8 lines
178 B
Java
import foo.bar.*;
|
|
import foo.baz.Baz;
|
|
class Main {
|
|
void foo() throws ReflectiveOperationException {
|
|
Class<Baz> aType = Baz.class;
|
|
Test.class.getAnnotation(aType);
|
|
}
|
|
} |