mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
13 lines
314 B
Java
13 lines
314 B
Java
import java.awt.event.*;
|
|
|
|
class A {
|
|
private ActionListener b = new Inner();
|
|
|
|
private abstract class MyActionListener implements ActionListener {
|
|
}
|
|
|
|
private class <caret>Inner extends MyActionListener implements ActionListener {
|
|
public void actionPerformed(ActionEvent e) {
|
|
}
|
|
}
|
|
} |