Texturen Gui angelegt

This commit is contained in:
Sebastian Kacza
2021-01-08 14:10:50 +01:00
parent 6f59e84a8f
commit 5ba141396d

View File

@@ -1,31 +1,37 @@
package de.jaujau.gui;
import java.awt.BorderLayout;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;
import de.jaujau.daten.Texturenpakete;
/**
* Class texturenauswaehlen_GUI
* Klasse texturenauswaehlen_GUI
*/
public class texturenauswaehlen_GUI {
public class texturenauswaehlen_GUI extends JFrame{
private static final long serialVersionUID = 1L;
private JPanel contentPane;
private Texturenpakete pakete;
public texturenauswaehlen_GUI (Texturenpakete texturenpakete) {
pakete = texturenpakete;
erstelleFenster();
}
private void erstelleFenster() {
setAlwaysOnTop(true);
setBounds(100, 100, 588, 382);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
contentPane.setLayout(new BorderLayout(0, 0));
setContentPane(contentPane);
}
//
// Fields
//
//
// Constructors
//
public texturenauswaehlen_GUI () { };
//
// Methods
//
//
// Accessor methods
//
//
// Other methods
//
}