All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.spun.util.FrameCloser Maven / Gradle / Ivy

There is a newer version: 24.9.0
Show newest version
package com.spun.util;

public class FrameCloser extends java.awt.event.WindowAdapter
{
  public void windowClosing(java.awt.event.WindowEvent e)
  {
    e.getWindow().dispose();
  }
  public void windowClosed(java.awt.event.WindowEvent e)
  {
    System.exit(0);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy