diff --git a/PR2Bib/src/domainBib/Bibliothek.java b/PR2Bib/src/domainBib/Bibliothek.java index c80e195..02b39be 100644 --- a/PR2Bib/src/domainBib/Bibliothek.java +++ b/PR2Bib/src/domainBib/Bibliothek.java @@ -7,7 +7,6 @@ import javax.swing.JLabel; import guiBib.*; public class Bibliothek { - static ArrayList bücherListe = new ArrayList<>(); static ArrayList cdListe = new ArrayList<>(); static ArrayList dvdListe = new ArrayList<>(); @@ -26,29 +25,29 @@ public class Bibliothek { bücherListe.add(b3); bücherListe.add(b4); bücherListe.add(b5); - - CD c1 = new CD("CD1", 2000, "01.01.2020", 20001); - CD c2 = new CD("CD2", 2000, "01.01.2020", 20002); - CD c3 = new CD("CD3", 2000, "01.01.2020", 20003); - CD c4 = new CD("CD4", 2000, "01.01.2020", 20004); - CD c5 = new CD("CD5", 2000, "01.01.2020", 20005); - cdListe.add(c1); - cdListe.add(c2); - cdListe.add(c3); - cdListe.add(c4); - cdListe.add(c5); - DVD d1 = new DVD("DVD1", 2000, "01.01.2020", 30001); - DVD d2 = new DVD("DVD2", 2000, "01.01.2020", 30002); - DVD d3 = new DVD("DVD3", 2000, "01.01.2020", 30003); - DVD d4 = new DVD("DVD4", 2000, "01.01.2020", 30004); - DVD d5 = new DVD("DVD5", 2000, "01.01.2020", 30005); + DVD d1 = new DVD("DVD1", 2000, "01.01.2020", 20001); + DVD d2 = new DVD("DVD2", 2000, "01.01.2020", 20002); + DVD d3 = new DVD("DVD3", 2000, "01.01.2020", 20003); + DVD d4 = new DVD("DVD4", 2000, "01.01.2020", 20004); + DVD d5 = new DVD("DVD5", 2000, "01.01.2020", 20005); dvdListe.add(d1); dvdListe.add(d2); dvdListe.add(d3); dvdListe.add(d4); dvdListe.add(d5); + CD c1 = new CD("CD1", 2000, "01.01.2020", 30001); + CD c2 = new CD("CD2", 2000, "01.01.2020", 30002); + CD c3 = new CD("CD3", 2000, "01.01.2020", 30003); + CD c4 = new CD("CD4", 2000, "01.01.2020", 30004); + CD c5 = new CD("CD5", 2000, "01.01.2020", 30005); + cdListe.add(c1); + cdListe.add(c2); + cdListe.add(c3); + cdListe.add(c4); + cdListe.add(c5); + Brettspiel bs1 = new Brettspiel("Brettspiel1", 2000, "01.01.2020", 40001); Brettspiel bs2 = new Brettspiel("Brettspiel2", 2000, "01.01.2020", 40002); Brettspiel bs3 = new Brettspiel("Brettspiel3", 2000, "01.01.2020", 40003); diff --git a/PR2Bib/src/guiBib/BibliothekGUI.java b/PR2Bib/src/guiBib/BibliothekGUI.java index 9e0b233..604fea5 100644 --- a/PR2Bib/src/guiBib/BibliothekGUI.java +++ b/PR2Bib/src/guiBib/BibliothekGUI.java @@ -37,6 +37,10 @@ public class BibliothekGUI extends JFrame implements ActionListener{ if(substring.equals("Kunde")) {openMainMenu(b);} if(substring.equals("Mitarbeiter")) {openAdmin();} }); + bp.add(b1); + bp.add(b2); + loginPanel.add(bp, BorderLayout.SOUTH); + add(mainPanel); setVisible(true); setSize(600, 600); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); @@ -65,7 +69,7 @@ public class BibliothekGUI extends JFrame implements ActionListener{ b4.addActionListener(e -> bsMenu()); JButton b5 = new JButton("Videospiele"); b5.addActionListener(e -> vsMenu()); - JButton b6 = new JButton("Meine Bücher"); + JButton b6 = new JButton("Meine Ausgeliehenen Medien"); b6.addActionListener(e -> myBooks(b)); JButton b7 = new JButton("Ausloggen"); b7.addActionListener(e -> cl.show(mainPanel, "LoginPanel")); @@ -239,7 +243,6 @@ public class BibliothekGUI extends JFrame implements ActionListener{ } - @Override public void actionPerformed(ActionEvent e) { }