Package net.yacy.gui.framework

Examples of net.yacy.gui.framework.Application


        // registering shutdown hook
        log.info("Registering Shutdown Hook");
        Thread t = new Thread() {
            @Override
            public void run() {
                app = new Application("YaCy GUI", operation, menues, new InfoPage("localhost", 8090));
                app.setLocationRelativeTo(null);
                app.setVisible(true);
            }
        };
        Switchboard.addShutdownHook(t, net.yacy.yacy.shutdownSemaphore);
View Full Code Here


        // registering shutdown hook
        log.info("Registering Shutdown Hook");
        Thread t = new Thread() {
            @Override
            public void run() {
                app = new Application("YaCy GUI", operation, menues, new InfoPage("localhost", 8090));
                app.setLocationRelativeTo(null);
                app.setVisible(true);
            }
        };
        Switchboard.addShutdownHook(t, net.yacy.yacy.shutdownSemaphore);
View Full Code Here

TOP

Related Classes of net.yacy.gui.framework.Application

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.