Package org.openoffice.gdocs.ui.dialogs

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


            if ( aURL.Path.compareTo(CONFIGURE) == 0 )
            {
                startNewThread(new Runnable() {
                    public void run() {
                        try {
                            new ConfigDialog(null,true).setVisible(true);
                        } catch (Exception e) {
                           
                        }
                    }
                });
View Full Code Here


private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton1ActionPerformed

    Util.startNewThread(Configuration.getClassLoader(),new Runnable() {
                    public void run() {
                        try {
                            new ConfigDialog(null,true).setVisible(true);
                        } catch (Exception e) {
                           
                        }
                    }
                });  
View Full Code Here

TOP

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

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.