Examples of ZipEntryEditorInput


Examples of org.springframework.ide.eclipse.ui.editors.ZipEntryEditorInput

    return null;
  }
 
  private static IEditorPart openZipEntryStorage(int line, IFile file,
      ZipEntryStorage storage) throws PartInitException, CoreException {
    IEditorInput input = new ZipEntryEditorInput(storage);
    IEditorDescriptor desc = IDE.getEditorDescriptor(storage.getName());
    IEditorPart editor = SpringUIUtils.openInEditor(input, desc.getId());
    IMarker marker = file.createMarker(IMarker.TEXT);
    marker.setAttribute(IMarker.LINE_NUMBER, line);
    IDE.gotoMarker(editor, marker);
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.