mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 19:21:16 +07:00
15 lines
342 B
Java
15 lines
342 B
Java
import javax.swing.*;
|
|
import java.lang.Override;
|
|
import java.lang.Runnable;
|
|
|
|
class Test {
|
|
void m() {
|
|
SwingUtilities.invokeLater(new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
System.out.println();
|
|
}
|
|
});
|
|
<selection> System.out.println();
|
|
<caret></selection> }
|
|
} |