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