Package org.photovault.common

Examples of org.photovault.common.SchemaUpdateAction


                    JOptionPane.YES_NO_OPTION,
                    JOptionPane.WARNING_MESSAGE,
                    null,
                    options,
                    null ) ) {
                final SchemaUpdateAction updater = new SchemaUpdateAction( db );
                SchemaUpdateStatusDlg statusDlg = new SchemaUpdateStatusDlg( null, true );
                updater.addSchemaUpdateListener( statusDlg );
                Thread upgradeThread = new Thread() {
                    public void run() {
                        updater.upgradeDatabase();
                    }
                };
                upgradeThread.start();
                statusDlg.setVisible( true );
                success = true;
View Full Code Here

TOP

Related Classes of org.photovault.common.SchemaUpdateAction

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.