mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
18 lines
282 B
Java
18 lines
282 B
Java
class A {
|
|
private Object b = new Inner(100);
|
|
|
|
private class <caret>Inner {
|
|
private int myInt = 0;
|
|
|
|
public Inner() {
|
|
}
|
|
|
|
public Inner(int anInt) {
|
|
myInt = anInt;
|
|
}
|
|
|
|
public int getInt() {
|
|
return myInt;
|
|
}
|
|
}
|
|
} |