import javax.swing.*; // I import the necessary library to do this public class IcyJake { public static void main(String[] args) { JFrame frame = new JFrame("This is a test by IcyJake"); frame.setVisible(true); frame.setSize(300,300); frame.setDefaultCloseOperation(3); frame.setResizable(false); } }