mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 02:21:17 +07:00
15 lines
280 B
Plaintext
15 lines
280 B
Plaintext
|
|
class A {
|
|
private ActionListener b = new MyActionListener() {
|
|
public void actionPerformed(int e) {
|
|
}
|
|
};
|
|
|
|
private abstract class MyActionListener implements ActionListener {
|
|
}
|
|
|
|
}
|
|
interface ActionListener {
|
|
public void actionPerformed(int e);
|
|
|
|
} |