mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 03:51:12 +07:00
15 lines
176 B
Java
15 lines
176 B
Java
@interface Anno {
|
|
String value();
|
|
}
|
|
|
|
public class FooBar {
|
|
@Anno(FooBar<caret>)
|
|
void m() {}
|
|
|
|
String FooBarrrrrr() {}
|
|
|
|
public static String FooBarrrr() {}
|
|
|
|
|
|
}
|