mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-27 12:36:03 +07:00
7 lines
151 B
Plaintext
7 lines
151 B
Plaintext
import java.lang.annotation.*;
|
|
import static java.lang.annotation.ElementType.*;
|
|
|
|
@Target({TYPE, FIELD, METHOD})
|
|
public @interface A {
|
|
int value();
|
|
} |