19 lines
304 B
Java
19 lines
304 B
Java
package main;
|
|
|
|
import javax.swing.JFrame;
|
|
|
|
public class Vue extends JFrame{
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
public Vue(String title) {
|
|
super(title);
|
|
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
|
|
}
|
|
|
|
public void reduireAgent() {}
|
|
|
|
public void close() {
|
|
this.dispose();
|
|
}
|
|
}
|