//***************************************************************************** // ColorCloseWindow.java // // Victoria Manfredi and Christie Rice // // Summer 2000 // // //***************************************************************************** import java.awt.event.*; public class ColorCloseWindow extends WindowAdapter { //*********************************** // // windowClosing // // Method to close the attribute // window frame. //*********************************** public void windowClosing(WindowEvent e) { try { e.getWindow().dispose(); }// end try catch (NullPointerException npe) { }// end catch }// end windowClosing }// end ColorCloseWindow