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

18 lines
527 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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();
}
}