Auf eigenes Repo pushen

neueBranch
Ruben 2022-11-28 11:49:32 +01:00
parent 3e676fa6d0
commit fc78eb1805
2 changed files with 13 additions and 2 deletions

11
.project 100644
View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>Bank-System</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
</buildSpec>
<natures>
</natures>
</projectDescription>

View File

@ -19,7 +19,7 @@ public class KontoAnlegenFrame extends JFrame implements ActionListener {
private Banksystem bs; private Banksystem bs;
public KontoAnlegenFrame(Banksystem bs) { public KontoAnlegenFrame(Banksystem bs) { //Konstruktor
this.bs = bs; this.bs = bs;
this.setTitle(bs.getBankname()); this.setTitle(bs.getBankname());
@ -39,7 +39,7 @@ public class KontoAnlegenFrame extends JFrame implements ActionListener {
ok = new JButton("Konto anlegen"); ok = new JButton("Konto anlegen");
ok.addActionListener(this); ok.addActionListener(this);
// Container cp = this.getContentPane(); //Container cp = this.getContentPane();
this.add(eingabe, "North"); this.add(eingabe, "North");
this.add(sp, "Center"); this.add(sp, "Center");
this.add(ok, "South"); this.add(ok, "South");