Package net.sourceforge.squirrel_sql.plugins.mssql.action

Examples of net.sourceforge.squirrel_sql.plugins.mssql.action.IndexDefragAction


        }
       
        public void run() {
            iterateIndexes(new IndexIterationListener() {
                public void indexSpotted(final ITableInfo tableInfo, final String indexName) {
                    final IndexDefragAction indexDefragAction = new IndexDefragAction(app,_resources,plugin,tableInfo,indexName);
                    indexDefragAction.setSession(_session);
                    GUIUtils.processOnSwingEventThread(new Runnable() {
                        public void run() {
                            coll.add(indexDefragAction);
                            _resources.addToMenu(indexDefragAction,_menu);                               
                        }
View Full Code Here

TOP

Related Classes of net.sourceforge.squirrel_sql.plugins.mssql.action.IndexDefragAction

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.