Namen geändert von GUI
parent
7e5e2f03b2
commit
fa6043367e
|
|
@ -3,13 +3,13 @@ import java.awt.*;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
public class FakturamaGUI {
|
public class MainGUI {
|
||||||
private JFrame frame;
|
private JFrame frame;
|
||||||
private JTextArea textArea;
|
private JTextArea textArea;
|
||||||
private JPanel mainPanel;
|
private JPanel mainPanel;
|
||||||
private CardLayout cardLayout;
|
private CardLayout cardLayout;
|
||||||
|
|
||||||
public FakturamaGUI() {
|
public MainGUI() {
|
||||||
initialize();
|
initialize();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -378,7 +378,7 @@ public class FakturamaGUI {
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
EventQueue.invokeLater(() -> {
|
EventQueue.invokeLater(() -> {
|
||||||
try {
|
try {
|
||||||
FakturamaGUI window = new FakturamaGUI();
|
MainGUI window = new MainGUI();
|
||||||
window.frame.setVisible(true);
|
window.frame.setVisible(true);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
Loading…
Reference in New Issue