Package fr.soleil.salsa.client.view

Examples of fr.soleil.salsa.client.view.AboutDialog


        aboutItem.addActionListener(new ActionListener() {

            @Override
            public void actionPerformed(ActionEvent e) {
                if (about == null) {
                    about = new AboutDialog(controllerTool.getApplicationController().getView());
                }
                if ((controllerTool != null) && (controllerTool.getApplicationController() != null)) {
                    about.setLocationRelativeTo(controllerTool.getApplicationController().getView());
                }
                about.setVisible(true);
View Full Code Here


        aboutItem.addActionListener(new ActionListener() {

            @Override
            public void actionPerformed(ActionEvent e) {
                if (about == null) {
                    about = new AboutDialog(controllerTool.getApplicationController().getView());
                }
                if ((controllerTool != null) && (controllerTool.getApplicationController() != null)) {
                    about.setLocationRelativeTo(controllerTool.getApplicationController().getView());
                }
                about.setVisible(true);
View Full Code Here

TOP

Related Classes of fr.soleil.salsa.client.view.AboutDialog

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.