forked from menault/TD3_DEV51_Qualite_Algo
24 lines
365 B
Plaintext
24 lines
365 B
Plaintext
import javax.swing.*;
|
|
import java.awt.event.*;
|
|
|
|
/**
|
|
* La classe <code>Event</code>
|
|
*
|
|
* @version
|
|
* @author
|
|
* Date :
|
|
* Licence :
|
|
*/
|
|
public class Event implements ActionListener {
|
|
// Attributs
|
|
|
|
// Constructeur de l'évennement
|
|
public Event() {
|
|
|
|
}
|
|
// Action de l'évennement
|
|
public void actionPerformed(ActionEvent event){
|
|
|
|
}
|
|
}
|