package ProjectElectricLocomotive; import javax.swing.*; import org.apache.logging.log4j.*; public class FrameLocomotiveCollection extends JFrame { public FormLocomotiveCollections _formLocomotiveCollections; public FrameLocomotiveCollection(Logger logger){ super(); setTitle("Коллекция");setDefaultCloseOperation(EXIT_ON_CLOSE); _formLocomotiveCollections = new FormLocomotiveCollections(logger); setContentPane(_formLocomotiveCollections.getPictureBoxCollections()); this.setJMenuBar(_formLocomotiveCollections.getMenuBar()); setDefaultLookAndFeelDecorated(false); setLocation(400, 50); pack(); setVisible(true); } }