mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 05:09:37 +07:00
16 lines
435 B
Java
16 lines
435 B
Java
// "Suppress for class" "false"
|
|
|
|
import java.awt.event.ActionEvent;
|
|
import java.awt.event.ActionListener;
|
|
|
|
class Test {
|
|
@javax.annotation.Generated(value = "unknown")
|
|
public static void main(String[] args) {
|
|
ActionListener listener = new ActionListener() {
|
|
public void actionPerformed(ActionEvent e) {
|
|
int <caret>i = 0;
|
|
System.out.println(i);
|
|
}
|
|
};
|
|
}
|
|
} |