mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 23:20:57 +07:00
14 lines
383 B
Java
14 lines
383 B
Java
// "Suppress for method" "true"
|
|
import java.awt.event.ActionListener;
|
|
import java.awt.event.ActionEvent;
|
|
|
|
class Test {
|
|
public static void main(String[] args) {
|
|
ActionListener listener = new ActionListener() {
|
|
public void actionPerformed(ActionEvent e) {
|
|
int <caret>i = 0;
|
|
System.out.println(i);
|
|
}
|
|
};
|
|
}
|
|
} |