Aniadida barra y funcionalidades extra
This commit is contained in:
21
src/VistaControlador/MostrarTodo.java
Normal file
21
src/VistaControlador/MostrarTodo.java
Normal 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user