TrabajoInterfaces/src/VistaControlador/MostrarTodo.java

22 lines
405 B
Java
Raw Normal View History

2019-11-15 17:18:58 +01:00
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);
}
}