Package net.sourceforge.squirrel_sql.plugins.dbdiff.actions

Examples of net.sourceforge.squirrel_sql.plugins.dbdiff.actions.CompareAction


    _resources = new DBDiffPluginResources(DBDiffPlugin.BUNDLE_BASE_NAME, this);

    IApplication app = getApplication();
    ActionCollection coll = app.getActionCollection();
    coll.add(new SelectAction(app, _resources, this));
    coll.add(new CompareAction(app, _resources, this));

  }
View Full Code Here


  }
  */
  public void setCompareMenuEnabled(boolean enabled)
  {
    final ActionCollection coll = getApplication().getActionCollection();
    CompareAction compareAction = (CompareAction) coll.get(CompareAction.class);
    compareAction.setEnabled(enabled);
  }
View Full Code Here

TOP

Related Classes of net.sourceforge.squirrel_sql.plugins.dbdiff.actions.CompareAction

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.