Examples of CopyTableAction


Examples of net.sourceforge.squirrel_sql.plugins.dbcopy.actions.CopyTableAction

    _resources = new DBCopyPluginResources(BUNDLE_BASE_NAME, this);
    PreferencesManager.initialize(this);

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

    setPasteMenuEnabled(false);
  }
View Full Code Here

Examples of net.sourceforge.squirrel_sql.plugins.dbcopy.actions.CopyTableAction

   * @param enabled
   */
  public void setCopyMenuEnabled(boolean enabled)
  {
    final ActionCollection coll = getApplication().getActionCollection();
    CopyTableAction copyAction = (CopyTableAction) coll.get(CopyTableAction.class);
    copyAction.setEnabled(enabled);
  }
View Full Code Here

Examples of net.sourceforge.squirrel_sql.plugins.mysql.action.CopyTableAction

    coll.add(new CreateDatabaseAction(app, _resources, this));
    coll.add(new DropDatabaseAction(app, _resources, this));
    coll.add(new AlterTableAction(app, _resources, this));
    // coll.add(new CreateTableAction(app, _resources, this));
    coll.add(new CopyTableAction(app, _resources, this));

    _mySQLMenu = createFullMysqlMenu();
    app.addToMenu(IApplication.IMenuIDs.SESSION_MENU, _mySQLMenu);
    super.registerSessionMenu(_mySQLMenu);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.