Cray FP strikes again: things like 1.1 + 0.1 are easily
[p5sagit/p5-mst-13.2.git] / jpl / JNI / Closer.java
CommitLineData
b83c0eaa 1import java.awt.event.*;
2import java.awt.*;
3public class Closer extends WindowAdapter {
4
5 public void windowClosing(WindowEvent e) {
6 Window w = e.getWindow();
7 w.dispose();
8 }
9}