import javax.swing.*; public class Main { public static void main(String[] args) { JFrame frame = new JFrame("Аэробус"); frame.setContentPane(new FormMapWithSetPlanesGeneric().MainPanel); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setLocation(200, 100); frame.pack(); frame.setSize(1000, 700); frame.setVisible(true); } }