first commit
This commit is contained in:
12
BoringWindow.java
Normal file
12
BoringWindow.java
Normal file
@@ -0,0 +1,12 @@
|
||||
import javax.swing.*;
|
||||
|
||||
public class BoringWindow extends JFrame
|
||||
{
|
||||
public static void main ( String[] args)
|
||||
{
|
||||
JFrame f = new BoringWindow();
|
||||
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
||||
f.setSize(690,420);
|
||||
f.setVisible(true);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user