mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 18:50:59 +07:00
14 lines
158 B
Plaintext
14 lines
158 B
Plaintext
class Outer {
|
|
|
|
public void bar() {
|
|
|
|
new Object() {
|
|
public void run() {
|
|
Outer.this.baz();
|
|
}
|
|
};
|
|
}
|
|
|
|
public void baz() {
|
|
}
|
|
} |