mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 19:21:16 +07:00
16 lines
351 B
Java
16 lines
351 B
Java
|
|
class A {
|
|
private ActionListener b = new Inner();
|
|
|
|
private abstract class MyActionListener implements ActionListener {
|
|
}
|
|
|
|
private class <caret>Inner extends MyActionListener implements ActionListener {
|
|
public void actionPerformed(int e) {
|
|
}
|
|
}
|
|
}
|
|
interface ActionListener {
|
|
public void actionPerformed(int e);
|
|
|
|
} |