`
Dollyn
  • 浏览: 165219 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

【转】Open an editor on something that is not a file

阅读更多

转自EclipseFAQ

Since 3.3 you can use the new EFS support to open an text editor on a file store that's backed by any kind of EFS using IDE.openEditorOnFileStore(page, fileStore).

Most editors will accept as input either an IFileEditorInput or an IStorageEditorInput. The former can be used only for opening files in the workspace, but the latter can be used to open a stream of bytes from anywhere. If you want to open a file on a database object, remote file, or other data source, IStorage is the way to go. The only downside is that this is a read-only input type, so you can use it only for viewing a file, not editing it. To use this approach, implement IStorage so that it returns the bytes for the file you want to display. Here is an IStorage that returns the contents of a string:

 
  class StringStorage extends PlatformObject      implements IStorage ...{       private String string;       StringStorage(String input) ...{this.string = input;}       public InputStream getContents() throws CoreException ...{          return new ByteArrayInputStream(string.getBytes());       }       public IPath getFullPath() ...{return null;}       public String getName() ...{          int len = Math.min(5, string.length());          return string.substring(0, len).concat("...");       }       public boolean isReadOnly() ...{return true;}    }

The class extends PlatformObject to inherit the standard implementation of IAdaptable, which IStorage extends. The getName and getFullPath methods can return null if they are not needed. In this case, we've implemented getName to return the first five characters of the string.

The next step is to create an IStorageEditorInput implementation that returns your IStorage object:

   class StringInput extends PlatformObject      implements IStorageEditorInput ...{       private IStorage storage;       StringInput(IStorage storage) ...{this.storage = storage;}       public boolean exists() ...{return true;}       public ImageDescriptor getImageDescriptor() ...{return null;}       public String getName() ...{          return storage.getName();       }       public IPersistableElement getPersistable() ...{return null;}       public IStorage getStorage() ...{          return storage;       }       public String getToolTipText() ...{          return "String-based file: " + storage.getName();       }    }

Again, many of the methods here are optional. The getPersistable method is used for implementing persistence of your editor input, so the platform can automatically restore your editor on start-up. Here, we've implemented the bare essentials: the editor name, and a tool tip.

The final step is to open an editor with this input. This snippet opens the platform's default text editor on a given string:

   IWorkbenchWindow window = ...;    String string = "This is the text file contents";    IStorage storage = new StringStorage(string);    IStorageEditorInput input = new StringInput(storage);    IWorkbenchPage page = window.getActivePage();    if (page != null)       page.openEditor(input, "org.eclipse.ui.DefaultTextEditor");
分享到:
评论
1 楼 jjgoooooole 2008-12-11  
你好,我最近做的东西是eclipse rcp的,也想用IStorageEditorInput
看了文章后,做了个只有这个编辑器的实例,但是运行不起,其它的代码都一样,只是在一个视图中点击tableview的一列表打开编辑器,代码:PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().openEditor(new StringEditorInput("text to be edited"), "org.eclipse.ui.DefaultTextEditor");

但是没有达到效果,确认依赖包都有,不知道使IStorageEditorInput还有什么地方需要注意的,可否给个IStorageEditorInput的简单例子,感激不尽!
jjgoooooole@126.com

相关推荐

    VB编程资源大全(英文源码 网络)

    AdvancedWebBrowser.zip Advanced web browser..something like IE but less options really nice interface..code is very easy to understand..teaches you the basics of using vb.<END><br>54 , iusage.zip...

    WinHex_14.2_SR-3_SC

    if you wish to search something on several partitions of a hard disk at the same time, or if a partition is damaged or formatted with a file system unknown to Windows, so Windows is unable to make it ...

    VB编程资源大全(英文源码 控件)

    <END><br>45,PlayAVI.zip PlayAVI.ocx is an activeX control which allows you to play an AVI file on a form. A sample application is provided with the control. <END><br>46,FldrView.zip The ...

    CE中文版-启点CE过NP中文.exe

    Disassembler/Debug: Fixed the address that is being edited when a breakpoint hits while editing an instruction Assembler: Fixed assembling reg*2/4/8+unquotedsymbol Plugin: Fixed the SDK for C plugins ...

    au3反编译源码

    A simulare file can be a included 'include files' but can be also an older version of the script with intact names or some already recoved + manual improved with more meaningful function names. ...

    ICS delphixe10源码版

    ICS V7 is a stable release that may still be updated for major bugs, but not for new releases of Delphi, latest it supported was XE3. ICS V8 is the current development release which is held in a ...

    eric5-5.3.1

    eric5 contains a plugin system, that is used to extend eric5's functionality. Some plugins are part of eric5. Additional plugins are available via the Internet. Please use the built in plug-in ...

    ActiveState Komodo IDE 10.2.1.89853 Setup + Keygen

    that if something didn't make sense then it didn't deserve a default binding, the user can define these themselves. We also reviewed other editors complete default keybinding sets to find ...

    Mobile Speech Recognizer 1.2

    After generating your Xcode project open Info.plist file and right-click on it and click “Add row”. Then enter two required two keys with descriptions. In the end it should look like it: Android ...

    VB.NET Developer's Guide(4574).pdf

    more readable and is a new standard for VB programmers that is consistent with the standard that nearly all other languages adopted long ago. 153_VBnet_TOC 8/16/01 1:12 PM Page xvii xviii Contents ...

Global site tag (gtag.js) - Google Analytics