Package eva.gui.mvc.tools

Examples of eva.gui.mvc.tools.AbstractWindowListener


   
    mainFrame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
    mainFrame.setLocationByPlatform(true);
    mainFrame.setSize(800,600);
    mainFrame.setTitle("EVA Version 2");
    mainFrame.addWindowListener(new AbstractWindowListener() {
      @Override
      public void windowClosed(WindowEvent event) {
        getApplication().saveProperties();
      }
    });
View Full Code Here

TOP

Related Classes of eva.gui.mvc.tools.AbstractWindowListener

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.