package graphics; import javax.swing.*; public class SimpleWindowApplication { public static void main(String[] args) { JFrame window = new JFrame("Frame with nothing in it"); window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); window.setVisible(true); } }