import java.awt.event.*;
public class MeterFrameWindowAdapter extends WindowAdapter {
 public void windowClosing(WindowEvent e) {
  System.exit(0); return;
 }
}
