mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
13 lines
247 B
Java
13 lines
247 B
Java
|
|
class A {
|
|
private ActionListener b = new Inner();
|
|
|
|
private class <caret>Inner implements ActionListener {
|
|
public void actionPerformed(int e) {
|
|
}
|
|
}
|
|
}
|
|
interface ActionListener {
|
|
public void actionPerformed(int e);
|
|
|
|
} |