mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 21:50:54 +07:00
17 lines
256 B
Plaintext
17 lines
256 B
Plaintext
|
|
interface ITest {
|
|
void handleAction(Object o);
|
|
}
|
|
|
|
|
|
class Test implements ITest{
|
|
|
|
public void handleAction(Object o) {
|
|
}
|
|
|
|
private class ActionHandler {
|
|
public void handleAction(Object o, Object o1) {
|
|
Test.this.handleAction(o);
|
|
}
|
|
}
|
|
} |