fixed carrello label

This commit is contained in:
2014-01-21 17:59:12 +01:00
parent c1581db721
commit 42c0cdf8a6

View File

@@ -456,7 +456,7 @@ public class UserInterface extends JFrame{
JLabel idlabel = new JLabel("ID"); JLabel idlabel = new JLabel("ID");
JTextField id = new JTextField(5); JTextField id = new JTextField(5);
JButton aggiungi_a_carrello = new JButton("Aggiungi al Carrello"); JButton aggiungi_a_carrello = new JButton("Aggiungi al Carrello");
JLabel prodotti_nel_carello = new JLabel(" Corrello: " + Carrello.size() + " Prodotti"); JLabel prodotti_nel_carello = new JLabel(" Carrello: " + Carrello.size() + " Prodotti");
JButton acquista = new JButton("Completa Acquisto"); JButton acquista = new JButton("Completa Acquisto");
class aggiungi_al_carrello_action implements ActionListener { class aggiungi_al_carrello_action implements ActionListener {