Aniadida barra y funcionalidades extra

This commit is contained in:
2019-11-15 17:18:58 +01:00
parent 18238bd6b8
commit cc5f59b5aa
7 changed files with 224 additions and 7 deletions

View File

@@ -0,0 +1,21 @@
package VistaControlador;
import java.util.Vector;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JList;
import Logica.Gestion;
import Logica.Meses;
import Logica.Transaccion;
public class MostrarTodo extends JFrame{
JList<String> elementos;
public MostrarTodo(Meses meses) {
super();
this.elementos=new JList<String>(meses.salidaTodo());
this.add(elementos);
}
}