mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
17 lines
259 B
Java
17 lines
259 B
Java
public class R {
|
|
private static int ourInt;
|
|
|
|
public static int getOurInt() {
|
|
return ourInt;
|
|
}
|
|
|
|
public static void doSmth(final int anObject) {
|
|
System.out.println(anObject);
|
|
}
|
|
}
|
|
|
|
class Usage {
|
|
void foo() {
|
|
R.doSmth(R.getOurInt());
|
|
}
|
|
} |