Package org.openoffice.gdocs.ui.dialogs

Examples of org.openoffice.gdocs.ui.dialogs.ImportDialog


    private void importFrom(final String system) throws HeadlessException {
        startNewThread(new Runnable() {
            public void run() {
                Configuration.showWaitWindow();
                try {                   
                    new ImportDialog(null,true, Configuration.getWorkingPath(), system, m_xFrame).setVisible(true);
                } catch (Exception e) {
                    JOptionPane.showMessageDialog(Configuration.getWaitWindow(),e.getMessage());
                }
            }
        });
View Full Code Here

TOP

Related Classes of org.openoffice.gdocs.ui.dialogs.ImportDialog

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.