mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 22:20:54 +07:00
9 lines
287 B
Java
9 lines
287 B
Java
public class EndInTheMiddle {
|
|
public static void main(String[] args) {
|
|
javax.swing.JFrame frame = new javax.swing.JFrame();
|
|
<caret>
|
|
frame.setVisible(true);
|
|
frame.setDefaultCloseOperation(javax.swing.JFrame.EXIT_ON_CLOSE);
|
|
frame.pack();
|
|
}
|
|
} |