Advertisement
Mudreco

Clase Listener_Administrador

Jun 21st, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.77 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package ejercicioinscripciones;
  7.  
  8. import java.awt.event.ActionEvent;
  9. import java.awt.event.ActionListener;
  10. import javax.swing.JTextArea;
  11.  
  12. /**
  13.  *
  14.  * @author Mudreco
  15.  */
  16. public class Listener_Administrador implements ActionListener {
  17.     private Registro registro;
  18.     private Ventana_Administrador va;
  19.     Listener_Administrador(Ventana_Administrador va){
  20.     //this.registro = registro;
  21.     this.va = va;
  22.    
  23.    
  24.     }
  25.  
  26.     @Override
  27.     public void actionPerformed(ActionEvent e) {
  28.         va.registro.limpiarLista();
  29.         va.Actualizar();
  30.        
  31.     }
  32.    
  33.    
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement