mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-11 00:22:35 +07:00
11 lines
179 B
Java
11 lines
179 B
Java
import java.lang.annotation.Annotation;
|
|
|
|
// "Iterate" "true"
|
|
class Test {
|
|
void foo() {
|
|
for (Annotation annotation: getClass().getAnnotations()) {
|
|
|
|
}
|
|
|
|
}
|
|
} |