mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
17 lines
249 B
Java
17 lines
249 B
Java
public class R {
|
|
private static int ourInt;
|
|
|
|
public static int getOurInt() {
|
|
return ourInt;
|
|
}
|
|
|
|
public static void doSmth() {
|
|
System.out.println(<selection>ourInt</selection>);
|
|
}
|
|
}
|
|
|
|
class Usage {
|
|
void foo() {
|
|
R.doSmth();
|
|
}
|
|
} |