Package org.rioproject.tools.ui.browser

Examples of org.rioproject.tools.ui.browser.Browser$Handler


        JMenuItem browserMenu = toolsMenu.add(new JMenuItem("Service Browser..."));
        final JFrame parent = this;
        browserMenu.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent ae) {
                try {
                    Browser browser = new Browser(config, parent);
                    browser.setVisible(true);
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        });
View Full Code Here

TOP

Related Classes of org.rioproject.tools.ui.browser.Browser$Handler

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.