Quick and dirty GUI integration.
parent
506e832323
commit
3e676fa6d0
|
@ -1,13 +1,21 @@
|
||||||
package de.hs_mannheim.informatik.bank;
|
package de.hs_mannheim.informatik.bank;
|
||||||
|
|
||||||
import de.hs_mannheim.informatik.bank.facade.Banksystem;
|
import de.hs_mannheim.informatik.bank.facade.Banksystem;
|
||||||
import de.hs_mannheim.informatik.bank.ui.UI;
|
import de.hs_mannheim.informatik.bank.gui.KontoAnlegenFrame;
|
||||||
|
import de.hs_mannheim.informatik.bank.gui.KontoListingFrame;
|
||||||
|
|
||||||
public class Main {
|
public class Main {
|
||||||
|
|
||||||
public static void main(String[] args) throws Exception {
|
public static void main(String[] args) throws Exception {
|
||||||
Banksystem bs = new Banksystem("Spaßkasse Mannheim");
|
Banksystem bs = new Banksystem("Spaßkasse Mannheim");
|
||||||
UI ui = new UI(bs);
|
// UI ui = new UI(bs);
|
||||||
|
|
||||||
|
KontoAnlegenFrame kaf = new KontoAnlegenFrame(bs);
|
||||||
|
kaf.setVisible(true);
|
||||||
|
|
||||||
|
|
||||||
|
KontoListingFrame klf = new KontoListingFrame(bs);
|
||||||
|
klf.setVisible(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -0,0 +1,62 @@
|
||||||
|
package de.hs_mannheim.informatik.bank.gui;
|
||||||
|
|
||||||
|
import java.awt.event.ActionEvent;
|
||||||
|
import java.awt.event.ActionListener;
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
import javax.swing.JButton;
|
||||||
|
import javax.swing.JFrame;
|
||||||
|
import javax.swing.JScrollPane;
|
||||||
|
import javax.swing.JTextArea;
|
||||||
|
import javax.swing.JTextField;
|
||||||
|
|
||||||
|
import de.hs_mannheim.informatik.bank.facade.Banksystem;
|
||||||
|
|
||||||
|
public class KontoAnlegenFrame extends JFrame implements ActionListener {
|
||||||
|
private JTextField eingabe;
|
||||||
|
private JTextArea ausgabe;
|
||||||
|
private JButton ok;
|
||||||
|
|
||||||
|
private Banksystem bs;
|
||||||
|
|
||||||
|
public KontoAnlegenFrame(Banksystem bs) {
|
||||||
|
this.bs = bs;
|
||||||
|
|
||||||
|
this.setTitle(bs.getBankname());
|
||||||
|
this.setSize(300, 300);
|
||||||
|
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
||||||
|
|
||||||
|
eingabe = new JTextField(20);
|
||||||
|
|
||||||
|
ausgabe = new JTextArea(5, 20);
|
||||||
|
ausgabe.setLineWrap(true);
|
||||||
|
ausgabe.setWrapStyleWord(true);
|
||||||
|
|
||||||
|
// Die Ausgabe automatisch scrollbar machen, wenn Sie nicht
|
||||||
|
// mehr auf den Bildschirm passen sollte.
|
||||||
|
JScrollPane sp = new JScrollPane(ausgabe);
|
||||||
|
|
||||||
|
ok = new JButton("Konto anlegen");
|
||||||
|
ok.addActionListener(this);
|
||||||
|
|
||||||
|
// Container cp = this.getContentPane();
|
||||||
|
this.add(eingabe, "North");
|
||||||
|
this.add(sp, "Center");
|
||||||
|
this.add(ok, "South");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void actionPerformed(ActionEvent e) {
|
||||||
|
System.out.println("Konto anlegen...");
|
||||||
|
|
||||||
|
try {
|
||||||
|
int knr = bs.kontoAnlegen(eingabe.getText(), 1);
|
||||||
|
|
||||||
|
this.ausgabe.append("Neues Konto angelegt: " + knr + "\n");
|
||||||
|
} catch (IOException e1) {
|
||||||
|
e1.printStackTrace();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,62 @@
|
||||||
|
package de.hs_mannheim.informatik.bank.gui;
|
||||||
|
|
||||||
|
import java.awt.event.ActionEvent;
|
||||||
|
import java.awt.event.ActionListener;
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
import javax.swing.JButton;
|
||||||
|
import javax.swing.JFrame;
|
||||||
|
import javax.swing.JScrollPane;
|
||||||
|
import javax.swing.JTextArea;
|
||||||
|
import javax.swing.JTextField;
|
||||||
|
|
||||||
|
import de.hs_mannheim.informatik.bank.facade.Banksystem;
|
||||||
|
|
||||||
|
public class KontoListingFrame extends JFrame implements ActionListener {
|
||||||
|
private JTextField eingabe;
|
||||||
|
private JTextArea ausgabe;
|
||||||
|
private JButton ok;
|
||||||
|
|
||||||
|
private Banksystem bs;
|
||||||
|
|
||||||
|
public KontoListingFrame(Banksystem bs) {
|
||||||
|
this.bs = bs;
|
||||||
|
|
||||||
|
this.setTitle(bs.getBankname());
|
||||||
|
this.setSize(300, 300);
|
||||||
|
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
||||||
|
|
||||||
|
eingabe = new JTextField(20);
|
||||||
|
|
||||||
|
ausgabe = new JTextArea(5, 20);
|
||||||
|
ausgabe.setLineWrap(true);
|
||||||
|
ausgabe.setWrapStyleWord(true);
|
||||||
|
|
||||||
|
// Die Ausgabe automatisch scrollbar machen, wenn Sie nicht
|
||||||
|
// mehr auf den Bildschirm passen sollte.
|
||||||
|
JScrollPane sp = new JScrollPane(ausgabe);
|
||||||
|
|
||||||
|
ok = new JButton("Kontenliste abrufen");
|
||||||
|
ok.addActionListener(this);
|
||||||
|
|
||||||
|
// Container cp = this.getContentPane();
|
||||||
|
// this.add(eingabe, "North");
|
||||||
|
this.add(sp, "Center");
|
||||||
|
this.add(ok, "South");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void actionPerformed(ActionEvent e) {
|
||||||
|
System.out.println("Kontenliste abrufen...");
|
||||||
|
|
||||||
|
ausgabe.setText("");
|
||||||
|
String[] konten = bs.getKontenliste();
|
||||||
|
|
||||||
|
for (String konto : konten) {
|
||||||
|
ausgabe.append(konto + "\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
package de.hs_mannheim.informatik.bank.ui;
|
package de.hs_mannheim.informatik.bank.tui;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.Scanner;
|
import java.util.Scanner;
|
||||||
|
@ -105,8 +105,10 @@ public class UI {
|
||||||
betrag = Double.parseDouble(sc.nextLine());
|
betrag = Double.parseDouble(sc.nextLine());
|
||||||
} catch (NumberFormatException nfe) {
|
} catch (NumberFormatException nfe) {
|
||||||
System.err.println("Betrag muss eine Kommazahl sein, bitte Eingabe wiederholen!");
|
System.err.println("Betrag muss eine Kommazahl sein, bitte Eingabe wiederholen!");
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ok = true;
|
||||||
} while(!ok);
|
} while(!ok);
|
||||||
|
|
||||||
long neuerKontostand = bs.geldEinzahlen(kontonummer, (long)betrag * 100);
|
long neuerKontostand = bs.geldEinzahlen(kontonummer, (long)betrag * 100);
|
Loading…
Reference in New Issue