18 lines
527 B
Java
18 lines
527 B
Java
|
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();
|
|||
|
}
|
|||
|
}
|