Package org.mongodb.meclipse.editors

Examples of org.mongodb.meclipse.editors.CollectionEditorInput


    if (selection != null && selection instanceof IStructuredSelection) {
      Collection obj = (Collection) selection.getFirstElement();
      // If we had a selection lets open the editor
      if (obj != null) {
        CollectionEditorInput input = new CollectionEditorInput(obj);
        try {
          page.openEditor(input, CollectionEditor.ID);

        } catch (PartInitException e) {
          System.out.println(e.getStackTrace());
View Full Code Here

TOP

Related Classes of org.mongodb.meclipse.editors.CollectionEditorInput

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.