Package org.springframework.ide.eclipse.webflow.ui.graph

Examples of org.springframework.ide.eclipse.webflow.ui.graph.WebflowEditorInput


   */
  public void run() {
    Object flowModelElement = getFirstSelectedEditPart().getModel();
    if (flowModelElement instanceof IWebflowModelElement) {
      IWebflowModelElement element = (IWebflowModelElement) flowModelElement;
      WebflowEditorInput input = WebflowUtils.getActiveFlowEditorInput();
      IResource file = input.getFile();
      if (file != null && file.exists()) {
        SpringUIUtils.openInEditor((IFile) file, input
            .getElementStartLine(element.getNode()));
      }
    }
  }
View Full Code Here

TOP

Related Classes of org.springframework.ide.eclipse.webflow.ui.graph.WebflowEditorInput

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.