Package net.sourceforge.squirrel_sql.plugins.dbdiff.gui

Examples of net.sourceforge.squirrel_sql.plugins.dbdiff.gui.ColumnDiffDialog


            }
            final MainFrame frame = sourceSession.getApplication().getMainFrame();
            if (colDifferences != null && colDifferences.size() > 0) {
                GUIUtils.processOnSwingEventThread(new Runnable() {
                    public void run() {
                        ColumnDiffDialog dialog = new ColumnDiffDialog(frame, false);                
                        dialog.setColumnDifferences(colDifferences);
                        dialog.setSession1Label(sourceSession.getAlias().getName());
                        dialog.setSession2Label(destSession.getAlias().getName());
                        dialog.setVisible(true);                       
                    }
                });
            } else {
                SwingUtilities.invokeLater(new Runnable() {
                    public void run() {
View Full Code Here

TOP

Related Classes of net.sourceforge.squirrel_sql.plugins.dbdiff.gui.ColumnDiffDialog

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.