Package org.cfeclipse.cfml.views.explorer

Examples of org.cfeclipse.cfml.views.explorer.LocalFileSystem


        }
       
        IWorkbenchPage page = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage();
        try {
          // Open the file
          LocalFileSystem fs = new LocalFileSystem();
          org.eclipse.ui.IEditorPart editor = page.openEditor(fs.getEditorInput( fileName ),"org.cfeclipse.cfml.editors.CFMLEditor");
               
          // Select the line number
          ITextEditor textEditor = (ITextEditor)editor;
          lineNumber--; // document is 0 based
          IDocument document = textEditor.getDocumentProvider().getDocument(textEditor.getEditorInput());
View Full Code Here

TOP

Related Classes of org.cfeclipse.cfml.views.explorer.LocalFileSystem

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.