mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 09:20:53 +07:00
13 lines
179 B
Java
13 lines
179 B
Java
// "Surround annotation parameter value with quotes" "true"
|
|
class X {
|
|
|
|
@interface MyAnnotation {
|
|
String value();
|
|
}
|
|
|
|
@MyAnnotation(value='<caret>\n')
|
|
void m() {
|
|
|
|
}
|
|
|
|
} |