package org.isatools.isacreator.plugins; import java.awt.event.WindowEvent; import java.awt.event.WindowListener; /** * Created by the ISA team * * @author Eamonn Maguire (eamonnmag@gmail.com) * <p/> * Date: 30/09/2011 * Time: 15:06 */ public class DefaultWindowListener implements WindowListener { public void windowOpened(WindowEvent event) { } public void windowClosing(WindowEvent event) { } public void windowClosed(WindowEvent event) { } public void windowIconified(WindowEvent event) { } public void windowDeiconified(WindowEvent event) { } public void windowActivated(WindowEvent event) { } public void windowDeactivated(WindowEvent event) { } }