mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
20 lines
269 B
Plaintext
20 lines
269 B
Plaintext
public class Parent {
|
|
void execute(){}
|
|
}
|
|
|
|
class Child extends Parent {
|
|
void foo() {
|
|
execute();
|
|
new Runnable() {
|
|
public void run() {
|
|
execute();
|
|
}
|
|
}.run();
|
|
}
|
|
|
|
class InnerChild {
|
|
void bar() {
|
|
execute();
|
|
}
|
|
}
|
|
} |