Package org.springframework.ide.eclipse.config.ui.editors

Examples of org.springframework.ide.eclipse.config.ui.editors.SpringConfigEditor


        && BeansUIUtils.isBeansConfigContentType((IFile) element.getElementResource())) {
      IFile file = (IFile) element.getElementResource();
      IEditorInput input = new FileEditorInput(file);
      IEditorPart part = SpringUIUtils.openInEditor(input, SpringConfigEditor.ID_EDITOR);
      if (part instanceof SpringConfigEditor) {
        SpringConfigEditor cEditor = (SpringConfigEditor) part;
        SpringConfigGraphPage graph = cEditor.getBeansGraphPage();
        if (graph != null) {
          cEditor.setActiveEditor(graph);
        }
      }
    }
    else {
      IEditorInput input;
View Full Code Here

TOP

Related Classes of org.springframework.ide.eclipse.config.ui.editors.SpringConfigEditor

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.