mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-27 09:29:10 +07:00
7 lines
142 B
Plaintext
7 lines
142 B
Plaintext
import java.lang.annotation.*;
|
|
import static java.lang.annotation.RetentionPolicy.*;
|
|
|
|
@Retention(CLASS)
|
|
public @interface A {
|
|
int value();
|
|
} |