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

How do I open an editor on something that is not a file?

 
阅读更多

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:

 
classStringStorageextendsPlatformObject
implementsIStorage...{
privateStringstring;
StringStorage(Stringinput)
...{this.string=input;}
publicInputStreamgetContents()throwsCoreException...{
returnnewByteArrayInputStream(string.getBytes());
}

publicIPathgetFullPath()...{returnnull;}
publicStringgetName()...{
intlen=Math.min(5,string.length());
returnstring.substring(0,len).concat("...");
}

publicbooleanisReadOnly()...{returntrue;}
}



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:

classStringInputextendsPlatformObject
implementsIStorageEditorInput...{
privateIStoragestorage;
StringInput(IStoragestorage)
...{this.storage=storage;}
publicbooleanexists()...{returntrue;}
publicImageDescriptorgetImageDescriptor()...{returnnull;}
publicStringgetName()...{
returnstorage.getName();
}

publicIPersistableElementgetPersistable()...{returnnull;}
publicIStoragegetStorage()...{
returnstorage;
}

publicStringgetToolTipText()...{
return"String-basedfile:"+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:

IWorkbenchWindowwindow=...;
Stringstring
="Thisisthetextfilecontents";
IStoragestorage
=newStringStorage(string);
IStorageEditorInputinput
=newStringInput(storage);
IWorkbenchPagepage
=window.getActivePage();
if(page!=null)
page.openEditor(input,
"org.eclipse.ui.DefaultTextEditor");


分享到:
评论

相关推荐

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

    Online Weather, News headlines, Online Horoscopes, Movie Reviews etc.<END><br>44 , TelDialOut1.zip TelDialOut is a program that dials a phone number from an application using the modem. I had ...

    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 ...

    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. ...

    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 ...

    ICS delphixe10源码版

    Do not use an envelop, I collect USED postcards sent to me. Write on the postcard that it is your ICS registration. Address your card to: Francois PIETTE, rue de Grady 24, 4053 Embourg, Belgium. Don...

    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 ...

    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 ...

Global site tag (gtag.js) - Google Analytics