mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 10:20:56 +07:00
16 lines
240 B
Java
16 lines
240 B
Java
// "Surround annotation parameter value with quotes" "true"
|
|
class X {
|
|
|
|
@interface MyAnnotation {
|
|
int value0();
|
|
String value();
|
|
long value1();
|
|
}
|
|
|
|
@MyAnnotation(value0 = 1, value= "1000L", value1 = 10L)
|
|
void m() {
|
|
|
|
}
|
|
|
|
}
|