mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-23 18:03:06 +07:00
17 lines
235 B
Java
17 lines
235 B
Java
|
|
interface ITest {
|
|
void act<caret>ion(Object o);
|
|
}
|
|
|
|
|
|
class Test implements ITest{
|
|
|
|
public void action(Object o) {
|
|
}
|
|
|
|
private class ActionHandler {
|
|
public void handleAction(Object o, Object o1) {
|
|
action(o);
|
|
}
|
|
}
|
|
} |