bugs menores en los jdialog

This commit is contained in:
Guillermo Roche 2019-11-11 22:44:36 +01:00
parent e9a85d3df0
commit da28be150a

View File

@ -20,11 +20,13 @@ public class Controlador implements ActionListener,ChangeListener{
public void actionPerformed(ActionEvent e) { public void actionPerformed(ActionEvent e) {
if(e.getActionCommand().equals(this.vista.boton.getActionCommand())) { if(e.getActionCommand().equals(this.vista.boton.getActionCommand())) {
String nombre=JOptionPane.showInputDialog("Introduce un nuevo gasto o ingreso"); String nombre=JOptionPane.showInputDialog("Introduce un nuevo gasto o ingreso");
if(nombre==null) return;
if(nombre.equals("")) { if(nombre.equals("")) {
JOptionPane.showMessageDialog(null, "Debe introducir algo", "error", JOptionPane.WARNING_MESSAGE); JOptionPane.showMessageDialog(null, "Debe introducir algo", "error", JOptionPane.WARNING_MESSAGE);
return; return;
} }
String dinero=JOptionPane.showInputDialog("Introduce a cuanto asciende"); String dinero=JOptionPane.showInputDialog("Introduce a cuanto asciende");
if(dinero==null) return;
if(dinero.equals("")) { if(dinero.equals("")) {
JOptionPane.showMessageDialog(null, "Debe introducir algo", "error", JOptionPane.WARNING_MESSAGE); JOptionPane.showMessageDialog(null, "Debe introducir algo", "error", JOptionPane.WARNING_MESSAGE);
return; return;