Package org.jsurveylib.gui.swing.widget

Examples of org.jsurveylib.gui.swing.widget.Chooser.showOpenDialog()


            open.setMnemonic(KeyEvent.VK_O);
            open.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent ae) {
                    Chooser chooser = new Chooser();
                    chooser.addChoosableFileFilter(new FileNameExtensionFilter("XML Files", "xml"));
                    if (chooser.showOpenDialog(frame) == JFileChooser.APPROVE_OPTION) {
                        try {
                            survey.loadXMLAnswers(chooser.getSelectedFile().getAbsolutePath());
                        } catch (IOException e) {
                            //TODO: i18n this error message
                            JOptionPane.showMessageDialog(frame, e.getMessage(), survey.getTitle(), JOptionPane.ERROR_MESSAGE);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.