Package com.valhalla.jbother.plugins.events

Examples of com.valhalla.jbother.plugins.events.ExitingEvent


     * Sets up the components for this container
     */
    private void initComponents() {
        addWindowListener(new WindowAdapter() {
            public void windowClosing(WindowEvent e) {
                ExitingEvent event = new ExitingEvent(buddyList);
                PluginChain.fireEvent(event);
                if (event.getExit()) {
                    buddyList.signOff();
                    buddyList.quitHandler();
                }
            }

View Full Code Here


        removeWindowListener(windowListener);
        windowListener = new WindowAdapter() {
            public void windowClosing(WindowEvent e) {
                saveStates();

                ExitingEvent event = new ExitingEvent(list);
                PluginChain.fireEvent(event);
                if (event.getExit()) {
                    closeHandler();
                    list.quitHandler();
                }
            }
        };
View Full Code Here

TOP

Related Classes of com.valhalla.jbother.plugins.events.ExitingEvent

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.