mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
15 lines
197 B
Java
15 lines
197 B
Java
class UUU {
|
|
int myValue;
|
|
|
|
UUU() {
|
|
System.out.println(newMethod());
|
|
}
|
|
|
|
private int newMethod() {
|
|
return myValue;
|
|
}
|
|
|
|
void init() {
|
|
myValue = 0;
|
|
}
|
|
} |