mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 03:51:12 +07:00
7 lines
143 B
Java
7 lines
143 B
Java
class A {
|
|
int getAAA(int param) { return 0; }
|
|
public void actionPerformed(A a) {
|
|
a.getAA<caret>
|
|
((A)a).actionPerformed(this);
|
|
}
|
|
} |