import javax.swing.*; public class Editor { public static void main(String[] args) { EditorFrame frame = new EditorFrame(); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setSize(640, 480); frame.show(); } }