Examples of open()


Examples of com.salesforce.dataloader.ui.LoaderWizardDialog.open()

    @Override
    public void run() {
        this.controller.clearMapper();
        LoaderWizardDialog dlg = new LoaderWizardDialog(LoaderWindow.getApp().getShell(), this.opInfo
                .instantiateWizard(this.controller));
        dlg.open();
    }

}
View Full Code Here

Examples of com.salesforce.dataloader.ui.extraction.ExtractionFinishDialog.open()

                //if extraction pop open an extraction finished dialog
                if (controller.getConfig().getOperationInfo().isExtraction()) {
                    ExtractionFinishDialog dlg = new ExtractionFinishDialog(LoaderWindow.getApp().getShell(), controller);
                    dlg.setMessage(dispMessage);
                    dlg.open();
                } else {
                    LoadFinishDialog dlg = new LoadFinishDialog(LoaderWindow.getApp().getShell(), controller);
                    dlg.setMessage(dispMessage);
                    dlg.open();
                }
View Full Code Here

Examples of com.salesforce.ide.ui.editors.visualforce.SnippetDialog.open()

            Utils.openError("Action Error", "Unable to open Merge Field: " + e.getMessage());
            return;
        }
        IFile file = multiPageEditor.getEditorInputFile();
        snippetDialog.setProject(file.getProject());
        snippetDialog.open();
    }

    @Override
    public void setActiveEditor(IAction action, IEditorPart targetEditor) {
    // nothing here
View Full Code Here

Examples of com.shop.cache.api.storage.SCStorage.open()

    /**
     * This server will overflow objects to disk. It uses the included
     * CCDB2 package to do this
     */
    SCStorage         db = CCDB2StorageFactory.create(new CCDB2Parameters());
    db.open(getFileFromPath(arguments.dbPath));

    /**
     * Everything's set up, we can now create the server
     */
    final SCServer       server = factory.newServer(context, db);
View Full Code Here

Examples of com.sibvisions.rad.persist.AbstractMemStorage.open()

        public void delete(DataBookEvent pEvent) throws ModelException
        {
        }
      };

      amsContacts.open();

      //use Session for caching
      getParent().put("contacts", amsContacts);
    }
   
View Full Code Here

Examples of com.sibvisions.rad.persist.jdbc.DBAccess.open()

    DBAccess dba = (DBAccess)get("dBAccess");
   
    if (dba == null)
    {
      dba = DBAccess.getDBAccess(DBSecurityManager.getCredentials(SessionContext.getCurrentSessionConfig()));
      dba.open();
         
      put("dBAccess", dba);
    }
   
    return dba;
View Full Code Here

Examples of com.simonepezzano.hshare.dialogs.AttributesDialog.open()

      public void widgetDisposed(DisposeEvent e) {
        HLog.facelogger.debug("Properties editing finished, refreshing contents");
        tv.refresh();
      }
    });
    ad.open();
  }
  /**
   * Opens the editing window for the selected ite
   */
  public void startEdit(){
View Full Code Here

Examples of com.simonepezzano.hshare.dialogs.UsersDialog.open()

*/
public class OpenUsersAction extends Action implements IAction {

  public void run(){
    UsersDialog ud = new UsersDialog(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell());
    ud.open();
  }

}
View Full Code Here

Examples of com.sleepycat.db.Db.open()

    File helpTextFile = File.createTempFile("helptext", ".ht");
    helpTextFile.deleteOnExit();
    String helpTextFileName = helpTextFile.getAbsolutePath();
    Db helpText = new Db(null, 0);
    helpText.open(null,helpTextFileName, null, Db.DB_BTREE, Db.DB_TRUNCATE, 0644);

    File dbBaseFile = File.createTempFile("database", "db");
    dbBaseFile.deleteOnExit();
    String dbBaseFileName = dbBaseFile.getAbsolutePath();
    Db dbBase = new Db(null, 0);
View Full Code Here

Examples of com.sleepycat.db.DbEnv.open()

    public DbEnv open(String testName)
        throws IOException, DbException {

        File dir = getDirectory(testName);
        DbEnv dbEnv = new DbEnv(0);
        dbEnv.open(dir.getAbsolutePath(), flags, 0);
        return dbEnv;
    }

    public File getDirectory(String testName)
        throws IOException {
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.