mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-25 03:11:25 +07:00
7 lines
143 B
Plaintext
7 lines
143 B
Plaintext
import java.lang.annotation.*;
|
|
import static java.lang.annotation.RetentionPolicy.*;
|
|
|
|
@Retention(SOURCE)
|
|
public @interface A {
|
|
int value();
|
|
} |