PIbd-21_Potapov_N.S._Stormt.../ProjectStormtrooper/FramePlaneCollection.java

18 lines
527 B
Java
Raw Normal View History

package ProjectStormtrooper;
import javax.swing.*;
public class FramePlaneCollection extends JFrame {
FormPlaneCollection _formPlaneCollection;
public FramePlaneCollection() {
super();
setTitle("Набор самолетов");
setDefaultCloseOperation(EXIT_ON_CLOSE);
_formPlaneCollection = new FormPlaneCollection();
setContentPane(_formPlaneCollection.getPanelWrapper());
setDefaultLookAndFeelDecorated(false);
setLocation(300, 100);
pack();
}
}