import javax.swing.*; public class Program { public static void main(String[] args) { FormGallery form = new FormGallery(); form.setSize(320, 240); form.setVisible(true); form.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE); } }